Uses of Class
org.gudy.bouncycastle.crypto.InvalidCipherTextException
-
Packages that use InvalidCipherTextException Package Description org.gudy.bouncycastle.crypto org.gudy.bouncycastle.crypto.encodings Block encodings for asymmetric ciphers.org.gudy.bouncycastle.crypto.engines org.gudy.bouncycastle.crypto.modes Modes for symmetric ciphers.org.gudy.bouncycastle.crypto.paddings -
-
Uses of InvalidCipherTextException in org.gudy.bouncycastle.crypto
Methods in org.gudy.bouncycastle.crypto that throw InvalidCipherTextException Modifier and Type Method Description byte[]
BufferedAsymmetricBlockCipher. doFinal()
process the contents of the buffer using the underlying cipher.int
BufferedBlockCipher. doFinal(byte[] out, int outOff)
Process the last block in the buffer.byte[]
AsymmetricBlockCipher. processBlock(byte[] in, int inOff, int len)
process the block of len bytes stored in in from offset inOff.byte[]
Wrapper. unwrap(byte[] in, int inOff, int inLen)
-
Uses of InvalidCipherTextException in org.gudy.bouncycastle.crypto.encodings
Methods in org.gudy.bouncycastle.crypto.encodings that throw InvalidCipherTextException Modifier and Type Method Description private byte[]
ISO9796d1Encoding. decodeBlock(byte[] in, int inOff, int inLen)
byte[]
OAEPEncoding. decodeBlock(byte[] in, int inOff, int inLen)
private byte[]
PKCS1Encoding. decodeBlock(byte[] in, int inOff, int inLen)
private byte[]
ISO9796d1Encoding. encodeBlock(byte[] in, int inOff, int inLen)
byte[]
OAEPEncoding. encodeBlock(byte[] in, int inOff, int inLen)
private byte[]
PKCS1Encoding. encodeBlock(byte[] in, int inOff, int inLen)
byte[]
ISO9796d1Encoding. processBlock(byte[] in, int inOff, int inLen)
byte[]
OAEPEncoding. processBlock(byte[] in, int inOff, int inLen)
byte[]
PKCS1Encoding. processBlock(byte[] in, int inOff, int inLen)
-
Uses of InvalidCipherTextException in org.gudy.bouncycastle.crypto.engines
Methods in org.gudy.bouncycastle.crypto.engines that throw InvalidCipherTextException Modifier and Type Method Description private byte[]
IESEngine. decryptBlock(byte[] in_enc, int inOff, int inLen, byte[] z)
private byte[]
IESEngine. encryptBlock(byte[] in, int inOff, int inLen, byte[] z)
byte[]
IESEngine. processBlock(byte[] in, int inOff, int inLen)
-
Uses of InvalidCipherTextException in org.gudy.bouncycastle.crypto.modes
Methods in org.gudy.bouncycastle.crypto.modes that throw InvalidCipherTextException Modifier and Type Method Description int
CTSBlockCipher. doFinal(byte[] out, int outOff)
Process the last block in the buffer.int
PaddedBlockCipher. doFinal(byte[] out, int outOff)
Deprecated.Process the last block in the buffer. -
Uses of InvalidCipherTextException in org.gudy.bouncycastle.crypto.paddings
Methods in org.gudy.bouncycastle.crypto.paddings that throw InvalidCipherTextException Modifier and Type Method Description int
PaddedBufferedBlockCipher. doFinal(byte[] out, int outOff)
Process the last block in the buffer.int
BlockCipherPadding. padCount(byte[] in)
return the number of pad bytes present in the block.int
PKCS7Padding. padCount(byte[] in)
return the number of pad bytes present in the block.
-