Uses of Class
com.amazonaws.encryptionsdk.CryptoOutputStream
Packages that use CryptoOutputStream
-
Uses of CryptoOutputStream in com.amazonaws.encryptionsdk
Methods in com.amazonaws.encryptionsdk that return CryptoOutputStreamModifier and TypeMethodDescriptionAwsCrypto.createDecryptingStream(CryptoMaterialsManager materialsManager, OutputStream os)
Returns aCryptoOutputStream
which decrypts the data prior to passing it onto the underlyingOutputStream
.<K extends MasterKey<K>>
CryptoOutputStream<K>AwsCrypto.createDecryptingStream(MasterKeyProvider<K> provider, OutputStream os)
Returns aCryptoOutputStream
which decrypts the data prior to passing it onto the underlyingOutputStream
.AwsCrypto.createEncryptingStream(CryptoMaterialsManager materialsManager, OutputStream os)
Returns the equivalent to callingAwsCrypto.createEncryptingStream(CryptoMaterialsManager, OutputStream, Map)
with an emptyencryptionContext
.AwsCrypto.createEncryptingStream(CryptoMaterialsManager materialsManager, OutputStream os, Map<String,String> encryptionContext)
Returns aCryptoOutputStream
which encrypts the data prior to passing it onto the underlyingOutputStream
.<K extends MasterKey<K>>
CryptoOutputStream<K>AwsCrypto.createEncryptingStream(MasterKeyProvider<K> provider, OutputStream os)
Returns the equivalent to callingAwsCrypto.createEncryptingStream(MasterKeyProvider, OutputStream, Map)
with an emptyencryptionContext
.<K extends MasterKey<K>>
CryptoOutputStream<K>AwsCrypto.createEncryptingStream(MasterKeyProvider<K> provider, OutputStream os, Map<String,String> encryptionContext)
Returns aCryptoOutputStream
which encrypts the data prior to passing it onto the underlyingOutputStream
.AwsCrypto.createUnsignedMessageDecryptingStream(CryptoMaterialsManager materialsManager, OutputStream os)
Returns aCryptoOutputStream
which decrypts the data prior to passing it onto the underlyingOutputStream
.<K extends MasterKey<K>>
CryptoOutputStream<K>AwsCrypto.createUnsignedMessageDecryptingStream(MasterKeyProvider<K> provider, OutputStream os)
Returns aCryptoOutputStream
which decrypts the data prior to passing it onto the underlyingOutputStream
.Methods in com.amazonaws.encryptionsdk that return types with arguments of type CryptoOutputStreamModifier and TypeMethodDescriptionCryptoOutputStream.getCryptoResult()
Returns the result of the cryptographic operations including associate metadata.