Package | Description |
---|---|
com.amazonaws.encryptionsdk |
Contains
AwsCrypto , the primary entry-point to the Aws
Encryption SDK. |
Modifier and Type | Method and Description |
---|---|
CryptoOutputStream<?> |
AwsCrypto.createDecryptingStream(CryptoMaterialsManager materialsManager,
OutputStream os)
Returns a
CryptoOutputStream which decrypts the data prior to passing it onto the
underlying OutputStream . |
<K extends MasterKey<K>> |
AwsCrypto.createDecryptingStream(MasterKeyProvider<K> provider,
OutputStream os)
Returns a
CryptoOutputStream which decrypts the data prior to passing it onto the
underlying OutputStream . |
CryptoOutputStream<?> |
AwsCrypto.createEncryptingStream(CryptoMaterialsManager materialsManager,
OutputStream os)
Returns the equivalent to calling
AwsCrypto.createEncryptingStream(CryptoMaterialsManager,
OutputStream, Map) with an empty encryptionContext . |
CryptoOutputStream<?> |
AwsCrypto.createEncryptingStream(CryptoMaterialsManager materialsManager,
OutputStream os,
Map<String,String> encryptionContext)
Returns a
CryptoOutputStream which encrypts the data prior to passing it onto the
underlying OutputStream . |
<K extends MasterKey<K>> |
AwsCrypto.createEncryptingStream(MasterKeyProvider<K> provider,
OutputStream os)
Returns the equivalent to calling
AwsCrypto.createEncryptingStream(MasterKeyProvider,
OutputStream, Map) with an empty encryptionContext . |
<K extends MasterKey<K>> |
AwsCrypto.createEncryptingStream(MasterKeyProvider<K> provider,
OutputStream os,
Map<String,String> encryptionContext)
Returns a
CryptoOutputStream which encrypts the data prior to passing it onto the
underlying OutputStream . |
CryptoOutputStream<?> |
AwsCrypto.createUnsignedMessageDecryptingStream(CryptoMaterialsManager materialsManager,
OutputStream os)
Returns a
CryptoOutputStream which decrypts the data prior to passing it onto the
underlying OutputStream . |
<K extends MasterKey<K>> |
AwsCrypto.createUnsignedMessageDecryptingStream(MasterKeyProvider<K> provider,
OutputStream os)
Returns a
CryptoOutputStream which decrypts the data prior to passing it onto the
underlying OutputStream . |
Modifier and Type | Method and Description |
---|---|
CryptoResult<CryptoOutputStream<K>,K> |
CryptoOutputStream.getCryptoResult()
Returns the result of the cryptographic operations including associate metadata.
|
Copyright © 2023. All rights reserved.