Home | History | Annotate | Line # | Download | only in hx509
      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 
     26