Java org.bouncycastle.cert X509AttributeCertificateHolder fields, constructors, methods, implement or subclass

Example usage for Java org.bouncycastle.cert X509AttributeCertificateHolder fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.bouncycastle.cert X509AttributeCertificateHolder.

The text is from its open source code.

Constructor

X509AttributeCertificateHolder(byte[] certEncoding)
Create a X509AttributeCertificateHolder from the passed in bytes.
X509AttributeCertificateHolder(AttributeCertificate attrCert)
Create a X509AttributeCertificateHolder from the passed in ASN.1 structure.

Method

Attribute[]getAttributes(ASN1ObjectIdentifier type)
Return an array of attributes matching the passed in type OID.
byte[]getEncoded()
Return the ASN.1 encoding of this holder's attribute certificate.
ExtensiongetExtension(ASN1ObjectIdentifier oid)
Look up the extension associated with the passed in OID.
AttributeCertificateHoldergetHolder()
Return the holder details for this attribute certificate.
AttributeCertificateIssuergetIssuer()
Return the issuer details for this attribute certificate.
DategetNotAfter()
Return the date after which this attribute certificate is not valid.
DategetNotBefore()
Return the date before which this attribute certificate is not valid.
BigIntegergetSerialNumber()
Return the serial number of this attribute certificate.
byte[]getSignature()
Return the bytes making up the signature associated with this attribute certificate.
booleanisSignatureValid(ContentVerifierProvider verifierProvider)
Validate the signature on the attribute certificate in this holder.
AttributeCertificatetoASN1Structure()
Return the underlying ASN.1 structure for the attribute certificate in this holder.