Package org.bouncycastle.cert.ocsp
Class BasicOCSPResp
- java.lang.Object
-
- org.bouncycastle.cert.ocsp.BasicOCSPResp
-
- All Implemented Interfaces:
org.bouncycastle.util.Encodable
public class BasicOCSPResp extends Object implements org.bouncycastle.util.Encodable
OCSP RFC 2560, RFC 6960BasicOCSPResponse ::= SEQUENCE { tbsResponseData ResponseData, signatureAlgorithm AlgorithmIdentifier, signature BIT STRING, certs [0] EXPLICIT SEQUENCE OF Certificate OPTIONAL }
-
-
Constructor Summary
Constructors Constructor Description BasicOCSPResp(org.bouncycastle.asn1.ocsp.BasicOCSPResponse resp)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
X509CertificateHolder[]
getCerts()
Set
getCriticalExtensionOIDs()
byte[]
getEncoded()
return the ASN.1 encoded representation of this object.org.bouncycastle.asn1.x509.Extension
getExtension(org.bouncycastle.asn1.ASN1ObjectIdentifier oid)
List
getExtensionOIDs()
Set
getNonCriticalExtensionOIDs()
Date
getProducedAt()
RespID
getResponderId()
SingleResp[]
getResponses()
byte[]
getSignature()
org.bouncycastle.asn1.ASN1ObjectIdentifier
getSignatureAlgOID()
org.bouncycastle.asn1.x509.AlgorithmIdentifier
getSignatureAlgorithmID()
Return the algorithm identifier describing the signature used in the response.byte[]
getTBSResponseData()
Return the DER encoding of the tbsResponseData field.int
getVersion()
boolean
hasExtensions()
int
hashCode()
boolean
isSignatureValid(ContentVerifierProvider verifierProvider)
verify the signature against the tbsResponseData object we contain.
-
-
-
Method Detail
-
getTBSResponseData
public byte[] getTBSResponseData()
Return the DER encoding of the tbsResponseData field.- Returns:
- DER encoding of tbsResponseData
-
getSignatureAlgorithmID
public org.bouncycastle.asn1.x509.AlgorithmIdentifier getSignatureAlgorithmID()
Return the algorithm identifier describing the signature used in the response.- Returns:
- an AlgorithmIdentifier
-
getVersion
public int getVersion()
-
getResponderId
public RespID getResponderId()
-
getProducedAt
public Date getProducedAt()
-
getResponses
public SingleResp[] getResponses()
-
hasExtensions
public boolean hasExtensions()
-
getExtension
public org.bouncycastle.asn1.x509.Extension getExtension(org.bouncycastle.asn1.ASN1ObjectIdentifier oid)
-
getExtensionOIDs
public List getExtensionOIDs()
-
getCriticalExtensionOIDs
public Set getCriticalExtensionOIDs()
-
getNonCriticalExtensionOIDs
public Set getNonCriticalExtensionOIDs()
-
getSignatureAlgOID
public org.bouncycastle.asn1.ASN1ObjectIdentifier getSignatureAlgOID()
-
getSignature
public byte[] getSignature()
-
getCerts
public X509CertificateHolder[] getCerts()
-
isSignatureValid
public boolean isSignatureValid(ContentVerifierProvider verifierProvider) throws OCSPException
verify the signature against the tbsResponseData object we contain.- Throws:
OCSPException
-
getEncoded
public byte[] getEncoded() throws IOException
return the ASN.1 encoded representation of this object.- Specified by:
getEncoded
in interfaceorg.bouncycastle.util.Encodable
- Throws:
IOException
-
-