Package | Description |
---|---|
org.forgerock.audit.secure |
Modifier and Type | Method and Description |
---|---|
SecretKey |
SecureStorage.readCurrentKey()
Reads the current key.
|
SecretKey |
KeyStoreSecureStorage.readCurrentKey() |
SecretKey |
SecureStorage.readInitialKey()
Reads the initial key.
|
SecretKey |
KeyStoreSecureStorage.readInitialKey() |
PrivateKey |
KeyStoreHandlerDecorator.readPrivateKeyFromKeyStore(String alias)
Get a private key for the alias using the default password from
KeyStoreHandlerDecorator.getPassword() . |
PrivateKey |
KeyStoreHandlerDecorator.readPrivateKeyFromKeyStore(String alias,
String password)
Get the private key with the given alias.
|
PublicKey |
KeyStoreHandlerDecorator.readPublicKeyFromKeyStore(String alias)
Get the public key with the given alias.
|
SecretKey |
KeyStoreHandlerDecorator.readSecretKeyFromKeyStore(String alias)
Get the secret key with the given alias using the default password from
KeyStoreHandlerDecorator.getPassword() . |
SecretKey |
KeyStoreHandlerDecorator.readSecretKeyFromKeyStore(String alias,
String password)
Get the secret key with the given alias.
|
byte[] |
SecureStorage.sign(byte[] signedData)
Signs the provided data.
|
byte[] |
KeyStoreSecureStorage.sign(byte[] signedData) |
boolean |
SecureStorage.verify(byte[] signedData,
byte[] signature)
Verifies that signed data corresponds to signature.
|
boolean |
KeyStoreSecureStorage.verify(byte[] signedData,
byte[] signature) |
void |
SecureStorage.writeCurrentKey(SecretKey key)
Writes the current key.
|
void |
KeyStoreSecureStorage.writeCurrentKey(SecretKey key) |
void |
SecureStorage.writeCurrentSignatureKey(SecretKey key)
Writes the current signature key.
|
void |
KeyStoreSecureStorage.writeCurrentSignatureKey(SecretKey key) |
void |
SecureStorage.writeInitialKey(SecretKey key)
Writes the initial key.
|
void |
KeyStoreSecureStorage.writeInitialKey(SecretKey key) |
void |
KeyStoreHandlerDecorator.writeToKeyStore(SecretKey secretKey,
String alias)
Writes to the secret storage using the same password than the KeyStoreHandler.
|
void |
KeyStoreHandlerDecorator.writeToKeyStore(SecretKey secretKey,
String alias,
String password)
Writes to the secret storage.
|
Copyright © 2025 Open Identity Platform Community. All rights reserved.