CryptoResult<byte[],?> |
AwsCrypto.decryptData(CryptoMaterialsManager materialsManager,
byte[] ciphertext) |
Decrypts the provided ciphertext by delegating to the provided materialsManager to obtain the
decrypted DataKey .
|
CryptoResult<byte[],?> |
AwsCrypto.decryptData(CryptoMaterialsManager materialsManager,
ParsedCiphertext ciphertext) |
|
<K extends MasterKey<K>> CryptoResult<byte[],K> |
AwsCrypto.decryptData(MasterKeyProvider<K> provider,
byte[] ciphertext) |
Decrypts the provided ciphertext by requesting that the provider unwrap any
usable DataKey in the ciphertext and then decrypts the ciphertext using that
DataKey .
|
<K extends MasterKey<K>> CryptoResult<byte[],K> |
AwsCrypto.decryptData(MasterKeyProvider<K> provider,
ParsedCiphertext ciphertext) |
|
CryptoResult<String,?> |
AwsCrypto.decryptString(CryptoMaterialsManager provider,
String ciphertext) |
Deprecated.
|
<K extends MasterKey<K>> CryptoResult<String,K> |
AwsCrypto.decryptString(MasterKeyProvider<K> provider,
String ciphertext) |
Deprecated.
|
CryptoResult<byte[],?> |
AwsCrypto.encryptData(CryptoMaterialsManager materialsManager,
byte[] plaintext) |
|
CryptoResult<byte[],?> |
AwsCrypto.encryptData(CryptoMaterialsManager materialsManager,
byte[] plaintext,
Map<String,String> encryptionContext) |
Returns an encrypted form of plaintext that has been protected with DataKeys that are in turn protected by the given CryptoMaterialsProvider.
|
<K extends MasterKey<K>> CryptoResult<byte[],K> |
AwsCrypto.encryptData(MasterKeyProvider<K> provider,
byte[] plaintext) |
|
<K extends MasterKey<K>> CryptoResult<byte[],K> |
AwsCrypto.encryptData(MasterKeyProvider<K> provider,
byte[] plaintext,
Map<String,String> encryptionContext) |
Returns an encrypted form of plaintext that has been protected with DataKeys that are in turn protected by MasterKeys provided by
provider .
|
CryptoResult<String,?> |
AwsCrypto.encryptString(CryptoMaterialsManager materialsManager,
String plaintext) |
Deprecated.
|
CryptoResult<String,?> |
AwsCrypto.encryptString(CryptoMaterialsManager materialsManager,
String plaintext,
Map<String,String> encryptionContext) |
Deprecated.
|
<K extends MasterKey<K>> CryptoResult<String,K> |
AwsCrypto.encryptString(MasterKeyProvider<K> provider,
String plaintext) |
Deprecated.
|
<K extends MasterKey<K>> CryptoResult<String,K> |
AwsCrypto.encryptString(MasterKeyProvider<K> provider,
String plaintext,
Map<String,String> encryptionContext) |
Deprecated.
|
CryptoResult<CryptoInputStream<K>,K> |
CryptoInputStream.getCryptoResult() |
Returns the result of the cryptographic operations including associate metadata.
|
CryptoResult<CryptoOutputStream<K>,K> |
CryptoOutputStream.getCryptoResult() |
Returns the result of the cryptographic operations including associate metadata.
|