OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NoSuchPaddingException
(Results
1 - 25
of
53
) sorted by null
1
2
3
/libcore/luni/src/main/java/javax/crypto/
NoSuchPaddingException.java
26
public class
NoSuchPaddingException
extends GeneralSecurityException {
34
* Creates a new {@code
NoSuchPaddingException
} with the specified
40
public
NoSuchPaddingException
(String msg) {
45
* Creates a new {@code
NoSuchPaddingException
}.
47
public
NoSuchPaddingException
() {
SealedObject.java
173
} catch (
NoSuchPaddingException
e) {
268
} catch (
NoSuchPaddingException
e) {
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/serialization/
NoSuchPaddingExceptionTest.java
24
import javax.crypto.
NoSuchPaddingException
;
41
return new Object[] { new
NoSuchPaddingException
(),
42
new
NoSuchPaddingException
(null), new
NoSuchPaddingException
(msgs[1]) };
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/serialization/
NoSuchPaddingExceptionTest.java
25
import javax.crypto.
NoSuchPaddingException
;
42
return new Object[] { new
NoSuchPaddingException
(),
43
new
NoSuchPaddingException
(null), new
NoSuchPaddingException
(msgs[1]) };
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
NoSuchPaddingExceptionTest.java
24
import javax.crypto.
NoSuchPaddingException
;
30
* Tests for <code>
NoSuchPaddingException
</code> class constructors and
56
* Test for <code>
NoSuchPaddingException
()</code> constructor Assertion:
57
* constructs
NoSuchPaddingException
with no detail message
60
NoSuchPaddingException
tE = new
NoSuchPaddingException
();
66
* Test for <code>
NoSuchPaddingException
(String)</code> constructor
67
* Assertion: constructs
NoSuchPaddingException
with detail message msg.
71
NoSuchPaddingException
tE;
73
tE = new
NoSuchPaddingException
(msgs[i])
[
all
...]
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
NoSuchPaddingExceptionTest.java
25
import javax.crypto.
NoSuchPaddingException
;
31
* Tests for <code>
NoSuchPaddingException
</code> class constructors and
45
* Test for <code>
NoSuchPaddingException
()</code> constructor Assertion:
46
* constructs
NoSuchPaddingException
with no detail message
49
NoSuchPaddingException
tE = new
NoSuchPaddingException
();
55
* Test for <code>
NoSuchPaddingException
(String)</code> constructor
56
* Assertion: constructs
NoSuchPaddingException
with detail message msg.
60
NoSuchPaddingException
tE;
62
tE = new
NoSuchPaddingException
(msgs[i])
[
all
...]
CipherOutputStream1Test.java
36
import javax.crypto.
NoSuchPaddingException
;
194
NoSuchAlgorithmException,
NoSuchPaddingException
, InvalidKeyException {
/external/apache-harmony/crypto/src/test/impl/java/org/apache/harmony/crypto/tests/javax/crypto/
Cipher_ImplTest.java
32
import javax.crypto.
NoSuchPaddingException
;
91
NoSuchPaddingException
{
101
NoSuchPaddingException
{
116
NoSuchPaddingException
{
132
fail("No expected
NoSuchPaddingException
");
133
} catch (
NoSuchPaddingException
e) {
142
NoSuchProviderException,
NoSuchPaddingException
{
158
fail("No expected
NoSuchPaddingException
");
159
} catch (
NoSuchPaddingException
e) {
173
NoSuchProviderException,
NoSuchPaddingException
{
[
all
...]
/external/apache-harmony/crypto/src/test/support/common/java/org/apache/harmony/crypto/tests/support/
MyCipher.java
34
import javax.crypto.
NoSuchPaddingException
;
53
throws
NoSuchPaddingException
{
55
throw new
NoSuchPaddingException
(padding);
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/support/
MyCipher.java
35
import javax.crypto.
NoSuchPaddingException
;
54
throws
NoSuchPaddingException
{
56
throw new
NoSuchPaddingException
(padding);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/
JcaJceHelper.java
18
import javax.crypto.
NoSuchPaddingException
;
25
throws NoSuchAlgorithmException,
NoSuchPaddingException
, NoSuchProviderException;
DefaultJcaJceHelper.java
17
import javax.crypto.
NoSuchPaddingException
;
25
throws NoSuchAlgorithmException,
NoSuchPaddingException
NamedJcaJceHelper.java
18
import javax.crypto.
NoSuchPaddingException
;
33
throws NoSuchAlgorithmException,
NoSuchPaddingException
, NoSuchProviderException
ProviderJcaJceHelper.java
18
import javax.crypto.
NoSuchPaddingException
;
33
throws NoSuchAlgorithmException,
NoSuchPaddingException
/libcore/support/src/test/java/tests/security/
CipherHelper.java
25
import javax.crypto.
NoSuchPaddingException
;
48
} catch (
NoSuchPaddingException
e) {
AlgorithmParameterAsymmetricHelper.java
29
import javax.crypto.
NoSuchPaddingException
;
61
} catch (
NoSuchPaddingException
e) {
AlgorithmParameterSymmetricHelper.java
29
import javax.crypto.
NoSuchPaddingException
;
74
} catch (
NoSuchPaddingException
e) {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
BaseCipherSpi.java
18
import javax.crypto.
NoSuchPaddingException
;
96
throws
NoSuchPaddingException
98
throw new
NoSuchPaddingException
("Padding " + padding + " unknown.");
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLCipher.java
39
import javax.crypto.
NoSuchPaddingException
;
142
* and throws {@code
NoSuchPaddingException
} if it doesn't.
144
protected abstract void checkSupportedPadding(Padding padding) throws
NoSuchPaddingException
;
168
protected void engineSetPadding(String paddingStr) throws
NoSuchPaddingException
{
174
NoSuchPaddingException
newE = new
NoSuchPaddingException
("No such padding: "
625
protected void checkSupportedPadding(Padding padding) throws
NoSuchPaddingException
{
631
throw new
NoSuchPaddingException
("Unsupported padding " + padding.toString());
764
protected void checkSupportedPadding(Padding padding) throws
NoSuchPaddingException
{
770
throw new
NoSuchPaddingException
("Unsupported padding " + padding.toString())
[
all
...]
DigitalSignature.java
31
import javax.crypto.
NoSuchPaddingException
;
92
} catch (
NoSuchPaddingException
e) {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
CipherSpi.java
20
import javax.crypto.
NoSuchPaddingException
;
64
catch (
NoSuchPaddingException
e)
82
throws
NoSuchPaddingException
89
throw new
NoSuchPaddingException
("no match on OAEP constructor for digest algorithm: "+ mgfParams.getDigestAlgorithm());
190
throws
NoSuchPaddingException
240
throw new
NoSuchPaddingException
(padding + " unavailable with RSA.");
/libcore/luni/src/main/java/org/apache/harmony/crypto/internal/
NullCipherSpi.java
36
import javax.crypto.
NoSuchPaddingException
;
51
public void engineSetPadding(String arg0) throws
NoSuchPaddingException
{
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseStreamCipher.java
11
import javax.crypto.
NoSuchPaddingException
;
134
throws
NoSuchPaddingException
138
throw new
NoSuchPaddingException
("Padding " + padding + " unknown.");
BaseWrapCipher.java
21
import javax.crypto.
NoSuchPaddingException
;
122
throws
NoSuchPaddingException
124
throw new
NoSuchPaddingException
("Padding " + padding + " unknown.");
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCEStreamCipher.java
21
import javax.crypto.
NoSuchPaddingException
;
161
throws
NoSuchPaddingException
165
throw new
NoSuchPaddingException
("Padding " + padding + " unknown.");
Completed in 2214 milliseconds
1
2
3