mirror of
https://github.com/samba-team/samba.git
synced 2025-03-10 12:58:35 +03:00
Update Heimdal to match current lorikeet-heimdal. This includes integrated PAC hooks, so Samba doesn't have to handle this any more. This also brings in the PKINIT code, hence so many new files. Andrew Bartlett (This used to be commit 351f7040f7bb73b9a60b22b564686f7c2f98a729)
26 lines
569 B
Groff
26 lines
569 B
Groff
-- $Id: pkcs10.asn1,v 1.1 2006/04/01 09:46:57 lha Exp $
|
|
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
|
|
|