Interface Keyring
-
- All Known Implementing Classes:
AesKeyring
,KmsDiscoveryKeyring
,KmsKeyring
,RsaKeyring
,S3Keyring
public interface Keyring
Keyring defines the interface for wrapping data keys. ACryptographicMaterialsManager
will use keyrings to encrypt and decrypt data keys.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DecryptionMaterials
onDecrypt(DecryptionMaterials materials, List<EncryptedDataKey> encryptedDataKeys)
EncryptionMaterials
onEncrypt(EncryptionMaterials materials)
-
-
-
Method Detail
-
onEncrypt
EncryptionMaterials onEncrypt(EncryptionMaterials materials)
-
onDecrypt
DecryptionMaterials onDecrypt(DecryptionMaterials materials, List<EncryptedDataKey> encryptedDataKeys)
-
-