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