~zulcss/samba/server-dailies-3.4

« back to all changes in this revision

Viewing changes to source4/heimdal/lib/hx509/pkcs10.asn1

  • Committer: Chuck Short
  • Date: 2010-09-28 20:38:39 UTC
  • Revision ID: zulcss@ubuntu.com-20100928203839-pgjulytsi9ue63x1
Initial version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
-- $Id$
 
2
PKCS10 DEFINITIONS ::=
 
3
 
 
4
BEGIN
 
5
 
 
6
IMPORTS
 
7
        Name, SubjectPublicKeyInfo, Attribute, AlgorithmIdentifier
 
8
        FROM rfc2459;
 
9
 
 
10
 
 
11
CertificationRequestInfo ::= SEQUENCE {
 
12
    version       INTEGER { pkcs10-v1(0) },
 
13
    subject       Name,
 
14
    subjectPKInfo SubjectPublicKeyInfo,
 
15
    attributes    [0] IMPLICIT SET OF Attribute OPTIONAL 
 
16
}
 
17
 
 
18
CertificationRequest ::= SEQUENCE {
 
19
    certificationRequestInfo CertificationRequestInfo,
 
20
    signatureAlgorithm       AlgorithmIdentifier,
 
21
    signature                BIT STRING
 
22
}
 
23
 
 
24
END
 
25