
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@16918 ec53bebd-3082-4978-b11e-865c3cabbd6b
26 lines
521 B
Groff
26 lines
521 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
|
|
|