com.ibm.security.certclient.util
Interface Pk10Certificate
- public interface Pk10Certificate
Method Summary
Modifier and Type | Method and Description |
---|---|
getCertificate()
Extract the X509 certificate
|
|
getPublicKey()
Extract the X509 certificate's public key
|
|
getSigAlg()
Extract the X509 certificate's signature algorithm
|
|
|
getSubjectKeyIdentifier()
Extract the X509 certificate's subject public key identifier
|
getSubjectName()
Extract the X509 certificate's subject name
|
Method Detail
getCertificate
- X509Certificate getCertificate( )
Extract the X509 certificate
Returns:
the X509 certificate
getPublicKey
- PublicKey getPublicKey()
Extract the X509 certificate's public key
Returns:
the X509 public key
getSubjectName
- String getSubjectName()
Extract the X509 certificate's subject name
Returns:
the subject Distinguished Name as a String
getSigAlg
- String getSigAlg()
Extract the X509 certificate's signature algorithm
Returns:
a string which identifies the certificate signing algorithm
getSubjectKeyIdentifier
- byte[] getSubjectKeyIdentifier( )
Extract the X509 certificate's subject public key identifier
Returns:
a byte array containing the generated subject key identifier
This uniquely identifies the private key corresponding to this certificate
without exposing it