Home | History | Annotate | Line # | Download | only in hx509
      1  1.1.1.2  elric -- Id
      2      1.1  elric PKCS10 DEFINITIONS ::=
      3      1.1  elric 
      4      1.1  elric BEGIN
      5      1.1  elric 
      6      1.1  elric IMPORTS
      7      1.1  elric 	Name, SubjectPublicKeyInfo, Attribute, AlgorithmIdentifier
      8      1.1  elric 	FROM rfc2459;
      9      1.1  elric 
     10      1.1  elric 
     11      1.1  elric CertificationRequestInfo ::= SEQUENCE {
     12      1.1  elric     version       INTEGER { pkcs10-v1(0) },
     13      1.1  elric     subject       Name,
     14      1.1  elric     subjectPKInfo SubjectPublicKeyInfo,
     15      1.1  elric     attributes    [0] IMPLICIT SET OF Attribute OPTIONAL 
     16      1.1  elric }
     17      1.1  elric 
     18      1.1  elric CertificationRequest ::= SEQUENCE {
     19      1.1  elric     certificationRequestInfo CertificationRequestInfo,
     20      1.1  elric     signatureAlgorithm	     AlgorithmIdentifier,
     21      1.1  elric     signature                BIT STRING
     22      1.1  elric }
     23      1.1  elric 
     24      1.1  elric END
     25      1.1  elric 
     26