SecretKey | 
KeyStoreSecureStorage.readCurrentKey() | 
  | 
SecretKey | 
SecureStorage.readCurrentKey() | 
 Reads the current key. 
 | 
SecretKey | 
KeyStoreSecureStorage.readInitialKey() | 
  | 
SecretKey | 
SecureStorage.readInitialKey() | 
 Reads the initial key. 
 | 
PrivateKey | 
KeyStoreHandlerDecorator.readPrivateKeyFromKeyStore(String alias) | 
 | 
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) | 
 | 
SecretKey | 
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. 
 |