Uses of Class
com.amazonaws.encryptionsdk.exception.BadCiphertextException
-
Packages that use BadCiphertextException Package Description com.amazonaws.encryptionsdk ContainsAwsCrypto
, the primary entry-point to the Aws Encryption SDK.com.amazonaws.encryptionsdk.internal 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 BadCiphertextException Modifier and Type Method Description void
CryptoOutputStream. close()
Closes this output stream and releases any system resources associated with this stream.CryptoResult<CryptoInputStream<K>,K>
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 BadCiphertextException Modifier and Type Method Description int
DecryptionHandler. doFinal(byte[] out, int outOff)
Finish processing of the bytes.int
EncryptionHandler. doFinal(byte[] out, int outOff)
Finish encryption of the plaintext bytes.ProcessingSummary
DecryptionHandler. processBytes(byte[] in, int off, int len, byte[] out, int outOff)
Decrypt the ciphertext bytes provided inin
and copy the plaintext bytes toout
.ProcessingSummary
EncryptionHandler. processBytes(byte[] in, int off, int len, byte[] out, int outOff)
Encrypt a block of bytes fromin
putting the plaintext result intoout
.
-