public
static
final
class
KeyStore.SecretKeyEntry
extends Object
implements
KeyStore.Entry
| java.lang.Object | |
| ↳ | java.security.KeyStore.SecretKeyEntry |
A KeyStore entry that holds a SecretKey.
Public constructors | |
|---|---|
KeyStore.SecretKeyEntry(SecretKey secretKey)
Constructs a |
|
Public methods | |
|---|---|
SecretKey
|
getSecretKey()
Gets the |
String
|
toString()
Returns a string representation of this SecretKeyEntry. |
Inherited methods | |
|---|---|
java.lang.Object
| |
KeyStore.SecretKeyEntry (SecretKey secretKey)
Constructs a SecretKeyEntry with a
SecretKey.
| Parameters | |
|---|---|
secretKey |
SecretKey:
the SecretKey |
| Throws | |
|---|---|
NullPointerException |
if secretKey
is null
|
SecretKey getSecretKey ()
Gets the SecretKey from this entry.
| Returns | |
|---|---|
SecretKey |
the SecretKey from this entry
|
String toString ()
Returns a string representation of this SecretKeyEntry.
| Returns | |
|---|---|
String |
a string representation of this SecretKeyEntry. |