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 TypeMethodDescriptionvoidCryptoOutputStream.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.intCryptoInputStream.read()intCryptoInputStream.read(byte[] b)intCryptoInputStream.read(byte[] b, int off, int len)voidCryptoOutputStream.write(byte[] b)voidCryptoOutputStream.write(byte[] b, int off, int len)voidCryptoOutputStream.write(int b) -
Uses of BadCiphertextException in com.amazonaws.encryptionsdk.internal
Methods in com.amazonaws.encryptionsdk.internal that throw BadCiphertextExceptionModifier and TypeMethodDescriptionintDecryptionHandler.doFinal(byte[] out, int outOff)Finish processing of the bytes.intEncryptionHandler.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 ininand copy the plaintext bytes toout.EncryptionHandler.processBytes(byte[] in, int off, int len, byte[] out, int outOff)Encrypt a block of bytes frominputting the plaintext result intoout.