Class for printing to stdout the contents of the keystore or a single
certificate. The certificate can be in the keystore (list(..) method) or not
(printCert(..) method).
Method Summary
static void
list(KeytoolParameters param) Prints the contents of the entry associated with the alias given in
param.
static void
printCert(KeytoolParameters param) Reads an X.509 certificate from the file specified in param and prints it
in a human-readable format.
static void
printX509CertDetailed(X509Certificate x509cert, String providerName) Prints the detailed description of a certificate in a human-readable
format: its owner and issuer, serial number, validity period and
fingerprints.
Reads an X.509 certificate from the file specified in param and prints it
in a human-readable format. If param.getFileName() returns null, the
certificate is read from the standard input. The input data is awaited
for 3 seconds. If the data is not entered, an exception is thrown.
Parameters: param - throws: KeytoolException - throws: IOException - throws: CertificateException - throws: FileNotFoundException - throws: NoSuchAlgorithmException - throws: NoSuchProviderException -
Prints the detailed description of a certificate in a human-readable
format: its owner and issuer, serial number, validity period and
fingerprints. providerName is needed to generate MessageDigest. If it is
null, a default one is used.
Parameters: x509cert - Parameters: providerName - throws: CertificateEncodingException - throws: NoSuchAlgorithmException - throws: NoSuchProviderException -