]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - crypto/heimdal/lib/hx509/pkcs10.asn1
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / crypto / heimdal / lib / hx509 / pkcs10.asn1
1 -- $Id$
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