]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - crypto/heimdal/lib/hx509/pkcs10.asn1
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / crypto / heimdal / lib / hx509 / pkcs10.asn1
1 -- $Id: pkcs10.asn1 16918 2006-04-01 09:46:57Z lha $
2 PKCS10 DEFINITIONS ::=
3
4 BEGIN
5
6 IMPORTS
7         Name, SubjectPublicKeyInfo, Attribute, AlgorithmIdentifier
8         FROM rfc2459;
9
10
11 CertificationRequestInfo ::= SEQUENCE {
12     version       INTEGER { pkcs10-v1(0) },
13     subject       Name,
14     subjectPKInfo SubjectPublicKeyInfo,
15     attributes    [0] IMPLICIT SET OF Attribute OPTIONAL 
16 }
17
18 CertificationRequest ::= SEQUENCE {
19     certificationRequestInfo CertificationRequestInfo,
20     signatureAlgorithm       AlgorithmIdentifier,
21     signature                BIT STRING
22 }
23
24 END
25