org.bouncycastle.asn1.pkcs
Class CertificationRequest
java.lang.Object
|
+--org.bouncycastle.asn1.ASN1Object
|
+--org.bouncycastle.asn1.pkcs.CertificationRequest
- All Implemented Interfaces:
- ASN1Encodable, Encodable
- Direct Known Subclasses:
- PKCS10CertificationRequest
- public class CertificationRequest
- extends ASN1Object
PKCS10 Certification request object.
CertificationRequest ::= SEQUENCE {
certificationRequestInfo CertificationRequestInfo,
signatureAlgorithm AlgorithmIdentifier{{ SignatureAlgorithms }},
signature BIT STRING
}
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
reqInfo
protected CertificationRequestInfo reqInfo
sigAlgId
protected AlgorithmIdentifier sigAlgId
sigBits
protected ASN1BitString sigBits
CertificationRequest
protected CertificationRequest()
CertificationRequest
public CertificationRequest(CertificationRequestInfo requestInfo,
AlgorithmIdentifier algorithm,
ASN1BitString signature)
CertificationRequest
public CertificationRequest(ASN1Sequence seq)
- Deprecated. use getInstance()
getInstance
public static CertificationRequest getInstance(java.lang.Object o)
getCertificationRequestInfo
public CertificationRequestInfo getCertificationRequestInfo()
getSignatureAlgorithm
public AlgorithmIdentifier getSignatureAlgorithm()
getSignature
public ASN1BitString getSignature()
toASN1Primitive
public ASN1Primitive toASN1Primitive()
- Description copied from class:
ASN1Object
- Method providing a primitive representation of this object suitable for encoding.
- Overrides:
toASN1Primitive
in class ASN1Object
- Following copied from class:
org.bouncycastle.asn1.ASN1Object
- Returns:
- a primitive representation of this object.