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

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

Introduction

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

The text is from its open source code.

Constructor

X509CertificateHolder(byte[] certEncoding)
Create a X509CertificateHolder from the passed in bytes.
X509CertificateHolder(Certificate x509Certificate)
Create a X509CertificateHolder from the passed in ASN.1 structure.

Method

booleanequals(Object o)
byte[]getEncoded()
Return the ASN.1 encoding of this holder's certificate.
ExtensiongetExtension(ASN1ObjectIdentifier oid)
Look up the extension associated with the passed in OID.
ListgetExtensionOIDs()
Returns a list of ASN1ObjectIdentifier objects representing the OIDs of the extensions contained in this holder's certificate.
ExtensionsgetExtensions()
Return the extensions block associated with this certificate if there is one.
X500NamegetIssuer()
Return the issuer of this certificate.
DategetNotAfter()
Return the date after which this certificate is not valid.
DategetNotBefore()
Return the date before which this 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.
AlgorithmIdentifiergetSignatureAlgorithm()
Return the details of the signature algorithm used to create this attribute certificate.
X500NamegetSubject()
Return the subject this certificate is for.
SubjectPublicKeyInfogetSubjectPublicKeyInfo()
Return the SubjectPublicKeyInfo describing the public key this certificate is carrying.
booleanisSignatureValid(ContentVerifierProvider verifierProvider)
Validate the signature on the certificate in this holder.
booleanisValidOn(Date date)
Return whether or not this certificate is valid on a particular date.
CertificatetoASN1Structure()
Return the underlying ASN.1 structure for the certificate in this holder.