blob: 518fe3bfa36a3edb045b243af1f70a8be0efe19c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
-- $Id: pkcs10.asn1 16918 2006-04-01 09:46:57Z lha $
PKCS10 DEFINITIONS ::=
BEGIN
IMPORTS
Name, SubjectPublicKeyInfo, Attribute, AlgorithmIdentifier
FROM rfc2459;
CertificationRequestInfo ::= SEQUENCE {
version INTEGER { pkcs10-v1(0) },
subject Name,
subjectPKInfo SubjectPublicKeyInfo,
attributes [0] IMPLICIT SET OF Attribute OPTIONAL
}
CertificationRequest ::= SEQUENCE {
certificationRequestInfo CertificationRequestInfo,
signatureAlgorithm AlgorithmIdentifier,
signature BIT STRING
}
END
|