Java javax.security.cert X509Certificate fields, constructors, methods, implement or subclass

Example usage for Java javax.security.cert X509Certificate fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.security.cert X509Certificate.

The text is from its open source code.

Method

voidcheckValidity(Date date)
Checks that the specified date is within the certificate's validity period.
byte[]getEncoded()
Returns the encoded form of this certificate.
X509CertificategetInstance(InputStream inStream)
Instantiates an X509Certificate object, and initializes it with the data read from the input stream inStream .
X509CertificategetInstance(byte[] certData)
Instantiates an X509Certificate object, and initializes it with the specified byte array.
PrincipalgetIssuerDN()
Gets the issuer (issuer distinguished name) value from the certificate.
DategetNotAfter()
Gets the notAfter date from the validity period of the certificate.
DategetNotBefore()
Gets the notBefore date from the validity period of the certificate.
PublicKeygetPublicKey()
Gets the public key from this certificate.
BigIntegergetSerialNumber()
Gets the serialNumber value from the certificate.
PrincipalgetSubjectDN()
Gets the subject (subject distinguished name) value from the certificate.