Interface CryptographicMaterials
-
- All Known Implementing Classes:
DecryptionMaterials
,EncryptionMaterials
,MultipartUploadMaterials
public interface CryptographicMaterials
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AlgorithmSuite
algorithmSuite()
CipherMode
cipherMode()
Provider
cryptoProvider()
SecretKey
dataKey()
Map<String,String>
encryptionContext()
Cipher
getCipher(byte[] iv)
software.amazon.awssdk.services.s3.model.S3Request
s3Request()
-
-
-
Method Detail
-
algorithmSuite
AlgorithmSuite algorithmSuite()
-
s3Request
software.amazon.awssdk.services.s3.model.S3Request s3Request()
-
dataKey
SecretKey dataKey()
-
cryptoProvider
Provider cryptoProvider()
-
cipherMode
CipherMode cipherMode()
-
getCipher
Cipher getCipher(byte[] iv)
-
-