Example usage for Java javax.security.cert X509Certificate fields, constructors, methods, implement or subclass
The text is from its open source code.
void | checkValidity(Date date) Checks that the specified date is within the certificate's validity period. |
byte[] | getEncoded() Returns the encoded form of this certificate. |
X509Certificate | getInstance(InputStream inStream) Instantiates an X509Certificate object, and initializes it with the data read from the input stream inStream . |
X509Certificate | getInstance(byte[] certData) Instantiates an X509Certificate object, and initializes it with the specified byte array. |
Principal | getIssuerDN() Gets the issuer (issuer distinguished name) value from the certificate. |
Date | getNotAfter() Gets the notAfter date from the validity period of the certificate. |
Date | getNotBefore() Gets the notBefore date from the validity period of the certificate. |
PublicKey | getPublicKey() Gets the public key from this certificate. |
BigInteger | getSerialNumber() Gets the serialNumber value from the certificate. |
Principal | getSubjectDN() Gets the subject (subject distinguished name) value from the certificate. |