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

1 2

  /libcore/ojluni/src/main/java/javax/crypto/
ExemptionMechanismException.java 36 public class ExemptionMechanismException extends GeneralSecurityException {
41 * Constructs a ExemptionMechanismException with no detailed message.
45 public ExemptionMechanismException() {
50 * Constructs a ExemptionMechanismException with the specified
56 public ExemptionMechanismException(String msg) {
ExemptionMechanismSpi.java 78 * @exception ExemptionMechanismException if problem(s) encountered in the
82 throws InvalidKeyException, ExemptionMechanismException;
102 * @exception ExemptionMechanismException if problem(s) encountered in the
107 ExemptionMechanismException;
127 * @exception ExemptionMechanismException if problem(s) encountered in the
132 ExemptionMechanismException;
139 * @exception ExemptionMechanismException if problem(s) encountered in the
143 throws ExemptionMechanismException;
164 * @exception ExemptionMechanismException if problem(s) encountered in the
169 throws ShortBufferException, ExemptionMechanismException;
    [all...]
ExemptionMechanism.java 253 * @exception ExemptionMechanismException if problem(s) encountered
258 throws ExemptionMechanismException {
311 * @exception ExemptionMechanismException if problem(s) encountered in the
315 throws InvalidKeyException, ExemptionMechanismException {
342 * @exception ExemptionMechanismException if problem(s) encountered in the
347 ExemptionMechanismException {
374 * @exception ExemptionMechanismException if problem(s) encountered in the
379 ExemptionMechanismException {
395 * @exception ExemptionMechanismException if problem(s) encountered in the
399 ExemptionMechanismException {
    [all...]
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/serialization/
ExemptionMechanismExceptionTest.java 24 import javax.crypto.ExemptionMechanismException;
30 * Test for ExemptionMechanismException serialization
40 return new Object[] { new ExemptionMechanismException(),
41 new ExemptionMechanismException(null), new ExemptionMechanismException(msgs[1]) };
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/serialization/
ExemptionMechanismExceptionTest.java 25 import javax.crypto.ExemptionMechanismException;
31 * Test for ExemptionMechanismException serialization
42 return new Object[] { new ExemptionMechanismException(),
43 new ExemptionMechanismException(null), new ExemptionMechanismException(msgs[1]) };
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
ExemptionMechanismExceptionTest.java 24 import javax.crypto.ExemptionMechanismException;
30 * Tests for <code>ExemptionMechanismException</code> class constructors and
55 return "ExemptionMechanismException: ".concat(tE.toString()).concat(
60 * Test for <code>ExemptionMechanismException()</code> constructor
61 * Assertion: constructs ExemptionMechanismException with no detail message
64 ExemptionMechanismException tE = new ExemptionMechanismException();
75 * Test for <code>ExemptionMechanismException(String)</code> constructor
76 * Assertion: constructs ExemptionMechanismException with detail message
80 ExemptionMechanismException tE
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
ExemptionMechanismExceptionTest.java 25 import javax.crypto.ExemptionMechanismException;
30 * Tests for <code>ExemptionMechanismException</code> class constructors and
44 return "ExemptionMechanismException: ".concat(tE.toString()).concat(
49 * Test for <code>ExemptionMechanismException()</code> constructor
50 * Assertion: constructs ExemptionMechanismException with no detail message
53 ExemptionMechanismException tE = new ExemptionMechanismException();
64 * Test for <code>ExemptionMechanismException(String)</code> constructor
65 * Assertion: constructs ExemptionMechanismException with detail message
69 ExemptionMechanismException tE
    [all...]
ExemptionMechanismSpiTest.java 34 import javax.crypto.ExemptionMechanismException;
51 protected byte[] engineGenExemptionBlob() throws ExemptionMechanismException {
56 protected int engineGenExemptionBlob(byte[] output, int outputOffset) throws ShortBufferException, ExemptionMechanismException {
66 protected void engineInit(Key key) throws InvalidKeyException, ExemptionMechanismException {
72 protected void engineInit(Key key, AlgorithmParameterSpec params) throws InvalidKeyException, InvalidAlgorithmParameterException, ExemptionMechanismException {
78 protected void engineInit(Key key, AlgorithmParameters params) throws InvalidKeyException, InvalidAlgorithmParameterException, ExemptionMechanismException {
119 fail("ExemptionMechanismException must be thrown");
120 } catch (ExemptionMechanismException e) {
124 fail("ExemptionMechanismException must be thrown");
125 } catch (ExemptionMechanismException e)
    [all...]
ExemptionMechanismTest.java 33 import javax.crypto.ExemptionMechanismException;
174 throws ExemptionMechanismException {
175 throw new ExemptionMechanismException();
180 throws ShortBufferException, ExemptionMechanismException {
186 throw new ExemptionMechanismException();
193 ExemptionMechanismException {
224 fail("ExemptionMechanismException expected");
225 } catch (ExemptionMechanismException e) {
231 ExemptionMechanismException, ShortBufferException {
264 fail("ExemptionMechanismException expected")
    [all...]
  /external/apache-harmony/crypto/src/test/support/common/java/org/apache/harmony/crypto/tests/support/
MyExemptionMechanismSpi.java 30 import javax.crypto.ExemptionMechanismException;
49 throws ExemptionMechanismException {
55 throws ShortBufferException, ExemptionMechanismException {
66 ExemptionMechanismException {
71 throw new ExemptionMechanismException("Incorrect key");
78 ExemptionMechanismException {
83 throw new ExemptionMechanismException("Incorrect key");
90 ExemptionMechanismException {
95 throw new ExemptionMechanismException("Incorrect key");
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/support/
MyExemptionMechanismSpi.java 31 import javax.crypto.ExemptionMechanismException;
50 throws ExemptionMechanismException {
56 throws ShortBufferException, ExemptionMechanismException {
67 ExemptionMechanismException {
72 throw new ExemptionMechanismException("Incorrect key");
79 ExemptionMechanismException {
84 throw new ExemptionMechanismException("Incorrect key");
94 ExemptionMechanismException {
99 throw new ExemptionMechanismException("Incorrect key");
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
ExemptionMechanismSpiTest.java 55 throws ExemptionMechanismException,
86 fail("ExemptionMechanismException must be thrown");
87 } catch (ExemptionMechanismException e) {
91 fail("ExemptionMechanismException must be thrown");
92 } catch (ExemptionMechanismException e) {
96 fail("ExemptionMechanismException must be thrown");
97 } catch (ExemptionMechanismException e) {
  /external/apache-harmony/crypto/src/test/impl/java/org/apache/harmony/crypto/tests/javax/crypto/
ExemptionMechanism_ImplTest.java 31 import javax.crypto.ExemptionMechanismException;
85 throws ExemptionMechanismException, ShortBufferException,
125 fail("ExemptionMechanismException must be thrown");
126 } catch (ExemptionMechanismException e) {
131 fail("ExemptionMechanismException must be thrown");
132 } catch (ExemptionMechanismException e) {
137 fail("ExemptionMechanismException must be thrown");
138 } catch (ExemptionMechanismException e) {
151 ExemptionMechanismException, InvalidAlgorithmParameterException,
189 ExemptionMechanismException, InvalidAlgorithmParameterException
    [all...]
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/23/
android.jar 
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/9/
android.jar 

Completed in 273 milliseconds

1 2