Uses of Class
com.amazonaws.encryptionsdk.CryptoInputStream
-
Packages that use CryptoInputStream Package Description com.amazonaws.encryptionsdk ContainsAwsCrypto
, the primary entry-point to the Aws Encryption SDK. -
-
Uses of CryptoInputStream in com.amazonaws.encryptionsdk
Methods in com.amazonaws.encryptionsdk that return CryptoInputStream Modifier and Type Method Description CryptoInputStream<?>
AwsCrypto. createDecryptingStream(CryptoMaterialsManager materialsManager, InputStream is)
Returns aCryptoInputStream
which decrypts the data after reading it from the underlyingInputStream
.<K extends MasterKey<K>>
CryptoInputStream<K>AwsCrypto. createDecryptingStream(MasterKeyProvider<K> provider, InputStream is)
Returns aCryptoInputStream
which decrypts the data after reading it from the underlyingInputStream
.CryptoInputStream<?>
AwsCrypto. createEncryptingStream(CryptoMaterialsManager materialsManager, InputStream is)
Returns the equivalent to callingAwsCrypto.createEncryptingStream(CryptoMaterialsManager, InputStream, Map)
with an emptyencryptionContext
.CryptoInputStream<?>
AwsCrypto. createEncryptingStream(CryptoMaterialsManager materialsManager, InputStream is, Map<String,String> encryptionContext)
Returns aCryptoInputStream
which encrypts the data after reading it from the underlyingInputStream
.<K extends MasterKey<K>>
CryptoInputStream<K>AwsCrypto. createEncryptingStream(MasterKeyProvider<K> provider, InputStream is)
Returns the equivalent to callingAwsCrypto.createEncryptingStream(MasterKeyProvider, InputStream, Map)
with an emptyencryptionContext
.<K extends MasterKey<K>>
CryptoInputStream<K>AwsCrypto. createEncryptingStream(MasterKeyProvider<K> provider, InputStream is, Map<String,String> encryptionContext)
Returns aCryptoInputStream
which encrypts the data after reading it from the underlyingInputStream
.Methods in com.amazonaws.encryptionsdk that return types with arguments of type CryptoInputStream Modifier and Type Method Description CryptoResult<CryptoInputStream<K>,K>
CryptoInputStream. getCryptoResult()
Returns the result of the cryptographic operations including associate metadata.
-