Interface PrivateKeyStorage
-
- All Known Implementing Classes:
PrivateKeyMemoryStorage
public interface PrivateKeyStorage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PrivateKeygetLatestKey()Returns recent private keyCollection<PrivateKey>getPreviousKeys()Returns previous private keys that were used in the past
-
-
-
Method Detail
-
getLatestKey
PrivateKey getLatestKey() throws CryptographyException
Returns recent private key- Throws:
CryptographyException
-
getPreviousKeys
Collection<PrivateKey> getPreviousKeys() throws CryptographyException
Returns previous private keys that were used in the past- Throws:
CryptographyException
-
-