Uses of Class
com.amazonaws.encryptionsdk.exception.BadCiphertextException
Packages that use BadCiphertextException
Package
Description
Contains
AwsCrypto
, the primary entry-point to the Aws
Encryption SDK.Contains the internal classes that handle the cryptographic defined by the message formats and
algorithms.
-
Uses of BadCiphertextException in com.amazonaws.encryptionsdk
Methods in com.amazonaws.encryptionsdk that throw BadCiphertextExceptionModifier and TypeMethodDescriptionvoid
CryptoOutputStream.close()
Closes this output stream and releases any system resources associated with this stream.CryptoInputStream.getCryptoResult()
Returns the result of the cryptographic operations including associate metadata.int
CryptoInputStream.read()
int
CryptoInputStream.read(byte[] b)
int
CryptoInputStream.read(byte[] b, int off, int len)
void
CryptoOutputStream.write(byte[] b)
void
CryptoOutputStream.write(byte[] b, int off, int len)
void
CryptoOutputStream.write(int b)
-
Uses of BadCiphertextException in com.amazonaws.encryptionsdk.internal
Methods in com.amazonaws.encryptionsdk.internal that throw BadCiphertextExceptionModifier and TypeMethodDescriptionint
DecryptionHandler.doFinal(byte[] out, int outOff)
Finish processing of the bytes.int
EncryptionHandler.doFinal(byte[] out, int outOff)
Finish encryption of the plaintext bytes.DecryptionHandler.processBytes(byte[] in, int off, int len, byte[] out, int outOff)
Decrypt the ciphertext bytes provided inin
and copy the plaintext bytes toout
.EncryptionHandler.processBytes(byte[] in, int off, int len, byte[] out, int outOff)
Encrypt a block of bytes fromin
putting the plaintext result intoout
.