org.apache.geronimo.crypto.asn1.pkcs
Class CertificationRequestInfo

java.lang.Object
  extended by org.apache.geronimo.crypto.asn1.ASN1Encodable
      extended by org.apache.geronimo.crypto.asn1.pkcs.CertificationRequestInfo
All Implemented Interfaces:
DEREncodable

public class CertificationRequestInfo
extends ASN1Encodable

PKCS10 CertificationRequestInfo object.

  CertificationRequestInfo ::= SEQUENCE {
   version             INTEGER { v1(0) } (v1,...),
   subject             Name,
   subjectPKInfo   SubjectPublicKeyInfo{{ PKInfoAlgorithms }},
   attributes          [0] Attributes{{ CRIAttributes }}
  }

  Attributes { ATTRIBUTE:IOSet } ::= SET OF Attribute{{ IOSet }}

  Attribute { ATTRIBUTE:IOSet } ::= SEQUENCE {
    type    ATTRIBUTE.&id({IOSet}),
    values  SET SIZE(1..MAX) OF ATTRIBUTE.&Type({IOSet}{\@type})
  }
 


Constructor Summary
CertificationRequestInfo(ASN1Sequence seq)
           
CertificationRequestInfo(X509Name subject, SubjectPublicKeyInfo pkInfo, ASN1Set attributes)
           
 
Method Summary
 ASN1Set getAttributes()
           
static CertificationRequestInfo getInstance(Object obj)
           
 X509Name getSubject()
           
 SubjectPublicKeyInfo getSubjectPublicKeyInfo()
           
 DERInteger getVersion()
           
 DERObject toASN1Object()
           
 
Methods inherited from class org.apache.geronimo.crypto.asn1.ASN1Encodable
equals, getDERObject, getEncoded, hashCode
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CertificationRequestInfo

public CertificationRequestInfo(X509Name subject,
                                SubjectPublicKeyInfo pkInfo,
                                ASN1Set attributes)

CertificationRequestInfo

public CertificationRequestInfo(ASN1Sequence seq)
Method Detail

getInstance

public static CertificationRequestInfo getInstance(Object obj)

getVersion

public DERInteger getVersion()

getSubject

public X509Name getSubject()

getSubjectPublicKeyInfo

public SubjectPublicKeyInfo getSubjectPublicKeyInfo()

getAttributes

public ASN1Set getAttributes()

toASN1Object

public DERObject toASN1Object()
Specified by:
toASN1Object in class ASN1Encodable


Copyright © 2003-2008 The Apache Geronimo development community. All Rights Reserved.