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

1 2 3 4

  /libcore/ojluni/src/main/java/javax/crypto/
BadPaddingException.java 38 public class BadPaddingException extends GeneralSecurityException {
43 * Constructs a BadPaddingException with no detail
47 public BadPaddingException() {
52 * Constructs a BadPaddingException with the specified
57 public BadPaddingException(String msg) {
AEADBadTagException.java 35 public class AEADBadTagException extends BadPaddingException {
CipherInputStream.java 110 catch (BadPaddingException e) {obuffer = null;}
301 catch (BadPaddingException ex) {
CipherSpi.java 550 } catch (BadPaddingException e) {
593 * @exception BadPaddingException if this cipher is in decryption mode,
602 throws IllegalBlockSizeException, BadPaddingException;
650 * @exception BadPaddingException if this cipher is in decryption mode,
661 BadPaddingException;
708 * @exception BadPaddingException if this cipher is in decryption mode,
720 BadPaddingException {
737 IllegalBlockSizeException, BadPaddingException {
    [all...]
SealedObject.java 174 catch (BadPaddingException ex) {
261 } catch (BadPaddingException bpe) {
284 * @exception BadPaddingException if the given cipher has been
290 BadPaddingException
358 } catch (BadPaddingException bpe) {
367 IllegalBlockSizeException, BadPaddingException
CipherOutputStream.java 205 } catch (BadPaddingException e) {
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/serialization/
BadPaddingExceptionTest.java 24 import javax.crypto.BadPaddingException;
30 * Test for BadPaddingException serialization
40 return new Object[] { new BadPaddingException(),
41 new BadPaddingException(null), new BadPaddingException(msgs[1]) };
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/serialization/
BadPaddingExceptionTest.java 25 import javax.crypto.BadPaddingException;
31 * Test for BadPaddingException serialization
42 return new Object[] { new BadPaddingException(),
43 new BadPaddingException(null), new BadPaddingException(msgs[1]) };
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
BadPaddingExceptionTest.java 24 import javax.crypto.BadPaddingException;
30 * Tests for <code>BadPaddingException</code> class constructors and methods.
54 * Test for <code>BadPaddingException()</code> constructor Assertion:
55 * constructs BadPaddingException with no detail message
58 BadPaddingException tE = new BadPaddingException();
64 * Test for <code>BadPaddingException(String)</code> constructor
65 * Assertion: constructs BadPaddingException with detail message msg.
69 BadPaddingException tE;
71 tE = new BadPaddingException(msgs[i])
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
BadPaddingExceptionTest.java 25 import javax.crypto.BadPaddingException;
31 * Tests for <code>BadPaddingException</code> class constructors and methods.
44 * Test for <code>BadPaddingException()</code> constructor Assertion:
45 * constructs BadPaddingException with no detail message
48 BadPaddingException tE = new BadPaddingException();
54 * Test for <code>BadPaddingException(String)</code> constructor
55 * Assertion: constructs BadPaddingException with detail message msg.
59 BadPaddingException tE;
61 tE = new BadPaddingException(msgs[i])
    [all...]
CipherSpiTest.java 32 import javax.crypto.BadPaddingException;
51 throws IllegalBlockSizeException, BadPaddingException {
58 BadPaddingException {
143 BadPaddingException, ShortBufferException {
264 public void testCipherSpi06() throws BadPaddingException,
378 throws IllegalBlockSizeException, BadPaddingException {
391 IllegalBlockSizeException, BadPaddingException {
411 BadPaddingException {
  /external/apache-harmony/crypto/src/test/support/common/java/org/apache/harmony/crypto/tests/support/
MyCipher.java 31 import javax.crypto.BadPaddingException;
109 throws IllegalBlockSizeException, BadPaddingException {
116 IllegalBlockSizeException, BadPaddingException {
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/support/
MyCipher.java 32 import javax.crypto.BadPaddingException;
112 throws IllegalBlockSizeException, BadPaddingException {
119 IllegalBlockSizeException, BadPaddingException {
  /libcore/ojluni/src/main/java/sun/security/ssl/
EngineInputRecord.java 32 import javax.crypto.BadPaddingException;
189 CipherBox box, ByteBuffer bb) throws BadPaddingException {
196 BadPaddingException reservedBPE = null;
203 throw new BadPaddingException(
211 } catch (BadPaddingException bpe) {
235 reservedBPE = new BadPaddingException("bad record");
246 reservedBPE = new BadPaddingException("bad record MAC");
CipherBox.java 397 int tagLen) throws BadPaddingException {
428 throw new BadPaddingException("invalid explicit IV");
454 int decrypt(ByteBuffer bb, int tagLen) throws BadPaddingException {
499 throw new BadPaddingException("invalid explicit IV");
669 ProtocolVersion protocolVersion) throws BadPaddingException {
684 throw new BadPaddingException("Invalid Padding length: " + padLen);
692 throw new BadPaddingException("Invalid TLS padding data");
700 throw new BadPaddingException("Invalid SSLv3 padding");
711 ProtocolVersion protocolVersion) throws BadPaddingException {
729 throw new BadPaddingException("Invalid Padding length: " + padLen)
    [all...]
InputRecord.java 34 import javax.crypto.BadPaddingException;
138 void decrypt(MAC signer, CipherBox box) throws BadPaddingException {
140 BadPaddingException reservedBPE = null;
147 throw new BadPaddingException(
156 } catch (BadPaddingException bpe) {
179 reservedBPE = new BadPaddingException("bad record");
197 reservedBPE = new BadPaddingException("bad record MAC");
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
CipherSpiTest.java 56 BadPaddingException, ShortBufferException {
177 public void testCipherSpi06() throws BadPaddingException,
291 throws IllegalBlockSizeException, BadPaddingException {
304 IllegalBlockSizeException, BadPaddingException {
325 BadPaddingException {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseWrapCipher.java 17 import javax.crypto.BadPaddingException;
277 throws IllegalBlockSizeException, BadPaddingException
290 throws IllegalBlockSizeException, BadPaddingException, ShortBufferException
317 catch (BadPaddingException e)
345 catch (BadPaddingException e)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
BaseCipherSpi.java 14 import javax.crypto.BadPaddingException;
131 catch (BadPaddingException e)
159 catch (BadPaddingException e)
  /libcore/luni/src/test/java/libcore/javax/crypto/
MockMacSpi.java 27 import javax.crypto.BadPaddingException;
  /libcore/support/src/test/java/tests/security/
AlgorithmParameterAsymmetricHelper.java 26 import javax.crypto.BadPaddingException;
AlgorithmParameterSymmetricHelper.java 25 import javax.crypto.BadPaddingException;
CipherHelper.java 22 import javax.crypto.BadPaddingException;
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLCipherRSA.java 37 import javax.crypto.BadPaddingException;
240 throws IllegalBlockSizeException, BadPaddingException {
297 BadPaddingException {
315 } catch (BadPaddingException e) {
340 } catch (BadPaddingException e) {
OpenSSLCipher.java 38 import javax.crypto.BadPaddingException;
141 throws IllegalBlockSizeException, BadPaddingException, ShortBufferException;
332 throws IllegalBlockSizeException, BadPaddingException {
368 BadPaddingException {
393 } catch (BadPaddingException e) {
418 } catch (BadPaddingException e) {
552 throws IllegalBlockSizeException, BadPaddingException, ShortBufferException {
    [all...]

Completed in 2398 milliseconds

1 2 3 4