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