public class

CertStatus

extends ASN1Encodable
java.lang.Object
   ↳ org.bouncycastle.asn1.ASN1Encodable
     ↳ org.bouncycastle.asn1.cmp.CertStatus

Summary

[Expand]
Inherited Constants
From class org.bouncycastle.asn1.ASN1Encodable
Public Constructors
CertStatus(byte[] certHash, BigInteger certReqId)
CertStatus(byte[] certHash, BigInteger certReqId, PKIStatusInfo statusInfo)
Public Methods
ASN1OctetString getCertHash()
DERInteger getCertReqId()
static CertStatus getInstance(Object o)
PKIStatusInfo getStatusInfo()
DERObject toASN1Object()
 CertStatus ::= SEQUENCE {
                   certHash    OCTET STRING,
                   -- the hash of the certificate, using the same hash algorithm
                   -- as is used to create and verify the certificate signature
                   certReqId   INTEGER,
                   -- to match this confirmation with the corresponding req/rep
                   statusInfo  PKIStatusInfo OPTIONAL
 }
 
[Expand]
Inherited Methods
From class org.bouncycastle.asn1.ASN1Encodable
From class java.lang.Object
From interface org.bouncycastle.asn1.DEREncodable

Public Constructors

public CertStatus (byte[] certHash, BigInteger certReqId)

public CertStatus (byte[] certHash, BigInteger certReqId, PKIStatusInfo statusInfo)

Public Methods

public ASN1OctetString getCertHash ()

public DERInteger getCertReqId ()

public static CertStatus getInstance (Object o)

public PKIStatusInfo getStatusInfo ()

public DERObject toASN1Object ()

 CertStatus ::= SEQUENCE {
                   certHash    OCTET STRING,
                   -- the hash of the certificate, using the same hash algorithm
                   -- as is used to create and verify the certificate signature
                   certReqId   INTEGER,
                   -- to match this confirmation with the corresponding req/rep
                   statusInfo  PKIStatusInfo OPTIONAL
 }
 

Returns
  • a basic ASN.1 object representation.