Uses of Class
com.amazonaws.encryptionsdk.CryptoOutputStream
-
Packages that use CryptoOutputStream Package Description com.amazonaws.encryptionsdk ContainsAwsCrypto
, the primary entry-point to the Aws Encryption SDK. -
-
Uses of CryptoOutputStream in com.amazonaws.encryptionsdk
Methods in com.amazonaws.encryptionsdk that return CryptoOutputStream Modifier and Type Method Description CryptoOutputStream<?>
AwsCrypto. 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
.CryptoOutputStream<?>
AwsCrypto. createEncryptingStream(CryptoMaterialsManager materialsManager, OutputStream os)
Returns the equivalent to callingAwsCrypto.createEncryptingStream(CryptoMaterialsManager, OutputStream, Map)
with an emptyencryptionContext
.CryptoOutputStream<?>
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
.CryptoOutputStream<?>
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 CryptoOutputStream Modifier and Type Method Description CryptoResult<CryptoOutputStream<K>,K>
CryptoOutputStream. getCryptoResult()
Returns the result of the cryptographic operations including associate metadata.
-