Uses of Class
org.forgerock.audit.secure.SecureStorageException
Packages that use SecureStorageException
-
Uses of SecureStorageException in org.forgerock.audit.secure
Methods in org.forgerock.audit.secure that throw SecureStorageExceptionModifier 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.booleanKeyStoreSecureStorage.verify(byte[] signedData, byte[] signature) booleanSecureStorage.verify(byte[] signedData, byte[] signature) Verifies that signed data corresponds to signature.voidKeyStoreSecureStorage.writeCurrentKey(SecretKey key) voidSecureStorage.writeCurrentKey(SecretKey key) Writes the current key.voidKeyStoreSecureStorage.writeCurrentSignatureKey(SecretKey key) voidSecureStorage.writeCurrentSignatureKey(SecretKey key) Writes the current signature key.voidKeyStoreSecureStorage.writeInitialKey(SecretKey key) voidSecureStorage.writeInitialKey(SecretKey key) Writes the initial key.voidKeyStoreHandlerDecorator.writeToKeyStore(SecretKey secretKey, String alias) Writes to the secret storage using the same password than the KeyStoreHandler.voidKeyStoreHandlerDecorator.writeToKeyStore(SecretKey secretKey, String alias, String password) Writes to the secret storage.