Package de.adorsys.keymanagement.api
Interface Juggler
- All Known Subinterfaces:
KeyStoreManager
public interface Juggler
This interface provides all functions that are available in this library.
-
Method Summary
Modifier and TypeMethodDescriptiondecode()Decodes keys from their encoded byte representation.Generates keys or key sets.readKeys()Creates key views from different sources, for example fromKeyStore.Helper to serialize and deserializeKeyStoreto and from byte[].CreatesKeyStorefrom key set.
-
Method Details
-
generateKeys
KeyGenerator generateKeys()Generates keys or key sets. -
toKeystore
KeyStoreCreator toKeystore()CreatesKeyStorefrom key set. -
readKeys
KeyReader readKeys()Creates key views from different sources, for example fromKeyStore. Typically, these key views allows you to perform complicated queries and to add/or remove keys. -
decode
KeyDecoder decode()Decodes keys from their encoded byte representation. Mostly used for PBE keys that are stored as is in KeyStore. -
serializeDeserialize
SerDe serializeDeserialize()Helper to serialize and deserializeKeyStoreto and from byte[].
-