xref: /netbsd-src/crypto/external/bsd/heimdal/dist/lib/hx509/pkcs10.asn1 (revision b40995a48bd40728880cac5a8845521b57dccf8c)
1-- Id
2PKCS10 DEFINITIONS ::=
3
4BEGIN
5
6IMPORTS
7	Name, SubjectPublicKeyInfo, Attribute, AlgorithmIdentifier
8	FROM rfc2459;
9
10
11CertificationRequestInfo ::= SEQUENCE {
12    version       INTEGER { pkcs10-v1(0) },
13    subject       Name,
14    subjectPKInfo SubjectPublicKeyInfo,
15    attributes    [0] IMPLICIT SET OF Attribute OPTIONAL
16}
17
18CertificationRequest ::= SEQUENCE {
19    certificationRequestInfo CertificationRequestInfo,
20    signatureAlgorithm	     AlgorithmIdentifier,
21    signature                BIT STRING
22}
23
24END
25
26