
- crypto/external/bsd/heimdal - crypto/external/bsd/libsaslc - crypto/external/bsd/netpgp - crypto/external/bsd/openssl Change-Id: I91dbf05f33e637edf5b9bb408d5baddd7ba8cf75
26 lines
519 B
Groff
26 lines
519 B
Groff
-- Id
|
|
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
|
|
|