Uses of Class
org.forgerock.audit.secure.SecureStorageException
-
Uses of SecureStorageException in org.forgerock.audit.secure
Modifier and TypeMethodDescriptionKeyStoreSecureStorage.readCurrentKey()
SecureStorage.readCurrentKey()
Reads the current key.KeyStoreSecureStorage.readInitialKey()
SecureStorage.readInitialKey()
Reads the initial key.KeyStoreHandlerDecorator.readPrivateKeyFromKeyStore
(String alias) Get a private key for the alias using the default password fromKeyStoreHandlerDecorator.getPassword()
.KeyStoreHandlerDecorator.readPrivateKeyFromKeyStore
(String alias, String password) Get the private key with the given alias.KeyStoreHandlerDecorator.readPublicKeyFromKeyStore
(String alias) Get the public key with the given alias.KeyStoreHandlerDecorator.readSecretKeyFromKeyStore
(String alias) Get the secret key with the given alias using the default password fromKeyStoreHandlerDecorator.getPassword()
.KeyStoreHandlerDecorator.readSecretKeyFromKeyStore
(String alias, String password) Get the secret key with the given alias.byte[]
KeyStoreSecureStorage.sign
(byte[] signedData) byte[]
SecureStorage.sign
(byte[] signedData) Signs the provided data.boolean
KeyStoreSecureStorage.verify
(byte[] signedData, byte[] signature) boolean
SecureStorage.verify
(byte[] signedData, byte[] signature) Verifies that signed data corresponds to signature.void
KeyStoreSecureStorage.writeCurrentKey
(SecretKey key) void
SecureStorage.writeCurrentKey
(SecretKey key) Writes the current key.void
KeyStoreSecureStorage.writeCurrentSignatureKey
(SecretKey key) void
SecureStorage.writeCurrentSignatureKey
(SecretKey key) Writes the current signature key.void
KeyStoreSecureStorage.writeInitialKey
(SecretKey key) void
SecureStorage.writeInitialKey
(SecretKey key) Writes the initial 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.