HomeSort by relevance Sort by last modified time
    Searched refs:InvalidCipherTextException (Results 1 - 25 of 28) sorted by null

1 2

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
InvalidCipherTextException.java 7 public class InvalidCipherTextException
13 public InvalidCipherTextException()
18 * create a InvalidCipherTextException with the given message.
22 public InvalidCipherTextException(
29 * create a InvalidCipherTextException with the given message.
34 public InvalidCipherTextException(
SignerWithRecovery.java 33 throws InvalidCipherTextException;
AsymmetricBlockCipher.java 40 * @exception InvalidCipherTextException data decrypts improperly.
44 throws InvalidCipherTextException;
Wrapper.java 17 throws InvalidCipherTextException;
BufferedBlockCipher.java 253 * @exception InvalidCipherTextException if padding is expected and not found.
260 throws DataLengthException, IllegalStateException, InvalidCipherTextException
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
BlockCipherPadding.java 5 import org.bouncycastle.crypto.InvalidCipherTextException;
43 * @exception InvalidCipherTextException if the padding is badly formed
47 throws InvalidCipherTextException;
ISO7816d4Padding.java 5 import org.bouncycastle.crypto.InvalidCipherTextException;
61 throws InvalidCipherTextException
72 throw new InvalidCipherTextException("pad block corrupted");
PKCS7Padding.java 5 import org.bouncycastle.crypto.InvalidCipherTextException;
57 throws InvalidCipherTextException
63 throw new InvalidCipherTextException("pad block corrupted");
70 throw new InvalidCipherTextException("pad block corrupted");
ISO10126d2Padding.java 5 import org.bouncycastle.crypto.InvalidCipherTextException;
68 throws InvalidCipherTextException
74 throw new InvalidCipherTextException("pad block corrupted");
X923Padding.java 5 import org.bouncycastle.crypto.InvalidCipherTextException;
69 throws InvalidCipherTextException
75 throw new InvalidCipherTextException("pad block corrupted");
ZeroBytePadding.java 5 import org.bouncycastle.crypto.InvalidCipherTextException;
57 throws InvalidCipherTextException
TBCPadding.java 5 import org.bouncycastle.crypto.InvalidCipherTextException;
77 throws InvalidCipherTextException
PaddedBufferedBlockCipher.java 7 import org.bouncycastle.crypto.InvalidCipherTextException;
240 * @exception InvalidCipherTextException if padding is expected and not found.
245 throws DataLengthException, IllegalStateException, InvalidCipherTextException
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/encodings/
PKCS1Encoding.java 9 import org.bouncycastle.crypto.InvalidCipherTextException;
128 throws InvalidCipherTextException
144 throws InvalidCipherTextException
188 * @exception InvalidCipherTextException if the decrypted block is not in PKCS1 format.
194 throws InvalidCipherTextException
200 throw new InvalidCipherTextException("block truncated");
209 throw new InvalidCipherTextException("unknown block type");
216 throw new InvalidCipherTextException("unknown block type");
222 throw new InvalidCipherTextException("invalid block type " + type);
228 throw new InvalidCipherTextException("block incorrect size")
    [all...]
OAEPEncoding.java 8 import org.bouncycastle.crypto.InvalidCipherTextException;
127 throws InvalidCipherTextException
143 throws InvalidCipherTextException
203 * @exception InvalidCipherTextException if the decrypted block turns out to
210 throws InvalidCipherTextException
233 throw new InvalidCipherTextException("data too short");
273 throw new InvalidCipherTextException("data hash wrong");
291 throw new InvalidCipherTextException("data start wrong " + start);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
AEADBlockCipher.java 6 import org.bouncycastle.crypto.InvalidCipherTextException;
89 * @throws org.bouncycastle.crypto.InvalidCipherTextException if the MAC fails to match.
92 throws IllegalStateException, InvalidCipherTextException;
CTSBlockCipher.java 6 import org.bouncycastle.crypto.InvalidCipherTextException;
184 * @exception InvalidCipherTextException if cipher text decrypts wrongly (in
190 throws DataLengthException, IllegalStateException, InvalidCipherTextException
CCMBlockCipher.java 8 import org.bouncycastle.crypto.InvalidCipherTextException;
130 throws IllegalStateException, InvalidCipherTextException
182 throws IllegalStateException, InvalidCipherTextException
274 throw new InvalidCipherTextException("mac check in CCM failed");
GCMBlockCipher.java 6 import org.bouncycastle.crypto.InvalidCipherTextException;
308 throws IllegalStateException, InvalidCipherTextException
320 throw new InvalidCipherTextException("data too short");
404 throw new InvalidCipherTextException("mac check in GCM failed");
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
RFC3394WrapEngine.java 6 import org.bouncycastle.crypto.InvalidCipherTextException;
122 throws InvalidCipherTextException
133 throw new InvalidCipherTextException("unwrap data must be a multiple of 8 bytes");
172 throw new InvalidCipherTextException("checksum failed");
DESedeWrapEngine.java 7 import org.bouncycastle.crypto.InvalidCipherTextException;
210 * @throws InvalidCipherTextException
213 throws InvalidCipherTextException
222 throw new InvalidCipherTextException("Null pointer as ciphertext");
228 throw new InvalidCipherTextException("Ciphertext not multiple of " + blockSize);
296 throw new InvalidCipherTextException(
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
BaseCipherSpi.java 28 import org.bouncycastle.crypto.InvalidCipherTextException;
146 catch (InvalidCipherTextException e)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseBlockCipher.java 29 import org.bouncycastle.crypto.InvalidCipherTextException;
737 catch (InvalidCipherTextException e)
781 catch (InvalidCipherTextException e)
821 throws IllegalStateException, InvalidCipherTextException;
885 public int doFinal(byte[] out, int outOff) throws IllegalStateException, InvalidCipherTextException
942 public int doFinal(byte[] out, int outOff) throws IllegalStateException, InvalidCipherTextException
BaseWrapCipher.java 33 import org.bouncycastle.crypto.InvalidCipherTextException;
324 catch (InvalidCipherTextException e)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
CipherSpi.java 28 import org.bouncycastle.crypto.InvalidCipherTextException;
476 catch (InvalidCipherTextException e)
518 catch (InvalidCipherTextException e)

Completed in 280 milliseconds

1 2