Uses of Class
com.amazonaws.encryptionsdk.CryptoInputStream
Packages that use CryptoInputStream
-
Uses of CryptoInputStream in com.amazonaws.encryptionsdk
Methods in com.amazonaws.encryptionsdk that return CryptoInputStreamModifier and TypeMethodDescriptionAwsCrypto.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
.AwsCrypto.createEncryptingStream(CryptoMaterialsManager materialsManager, InputStream is)
Returns the equivalent to callingAwsCrypto.createEncryptingStream(CryptoMaterialsManager, InputStream, Map)
with an emptyencryptionContext
.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
.AwsCrypto.createUnsignedMessageDecryptingStream(CryptoMaterialsManager materialsManager, InputStream is)
Returns aCryptoInputStream
which decrypts the data after reading it from the underlyingInputStream
.<K extends MasterKey<K>>
CryptoInputStream<K>AwsCrypto.createUnsignedMessageDecryptingStream(MasterKeyProvider<K> provider, InputStream is)
Returns aCryptoInputStream
which decrypts the data after reading it from the underlyingInputStream
.Methods in com.amazonaws.encryptionsdk that return types with arguments of type CryptoInputStreamModifier and TypeMethodDescriptionCryptoInputStream.getCryptoResult()
Returns the result of the cryptographic operations including associate metadata.