No examples for this method.
Frequently called with: [Clear]
-1
| java.lang.Object | |
| ↳ | java.security.KeyStore.PrivateKeyEntry |
PrivateKeyEntry represents a KeyStore entry that holds a private key.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
Constructs a new instance of
PrivateKeyEntry with the given
PrivateKey and the provided certificate chain.
|
||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
Returns the certificate corresponding to the private key.
|
||||||||||
|
|
Returns the certificate chain.
|
||||||||||
|
|
Returns the private key.
|
||||||||||
|
|
Returns a string containing a concise, human-readable description of this
PrivateKeyEntry.
|
||||||||||
| [Expand]
Inherited Methods
|
|||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class java.lang.Object
|
|||||||||||
Constructs a new instance of PrivateKeyEntry with the given PrivateKey and the provided certificate chain.
| privateKey | the private key. |
|---|---|
| chain | the ordered certificate chain with the certificate corresponding to the private key at index 0. |
| NullPointerException | if privateKey or chain is null. |
|---|---|
| IllegalArgumentException | if chain.length == 0, the algorithm of the private key does not match the algorithm of the public key of the first certificate or the certificates are not all of the same type. |
Returns the certificate corresponding to the private key.
Returns the certificate chain.
Returns the private key.
Returns a string containing a concise, human-readable description of this PrivateKeyEntry.
PrivateKeyEntry.