Searched refs:InvalidAlgorithmParameterException (Results 26 - 50 of 145) sorted by relevance

123456

/openjdk7/jdk/test/java/security/Provider/
H A DCertStoreConstructorParam.java40 } catch (InvalidAlgorithmParameterException iape) {
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCertStore.java29 import java.security.InvalidAlgorithmParameterException;
218 * @throws InvalidAlgorithmParameterException if the specified
225 throws InvalidAlgorithmParameterException,
238 throws NoSuchAlgorithmException, InvalidAlgorithmParameterException {
240 if (cause instanceof InvalidAlgorithmParameterException) {
241 throw (InvalidAlgorithmParameterException)cause;
281 * @throws InvalidAlgorithmParameterException if the specified
295 throws InvalidAlgorithmParameterException,
339 * @throws InvalidAlgorithmParameterException if the specified
350 InvalidAlgorithmParameterException {
[all...]
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMDigestMethod.java34 import java.security.InvalidAlgorithmParameterException;
56 * @throws InvalidAlgorithmParameterException if the parameters are not
60 throws InvalidAlgorithmParameterException {
62 throw new InvalidAlgorithmParameterException
83 } catch (InvalidAlgorithmParameterException iape) {
111 * @throws InvalidAlgorithmParameterException if the parameters are not
115 throws InvalidAlgorithmParameterException {
117 throw new InvalidAlgorithmParameterException("no parameters " +
203 throws InvalidAlgorithmParameterException {
219 throws InvalidAlgorithmParameterException {
[all...]
H A DDOMCanonicalXMLC14N11Method.java33 import java.security.InvalidAlgorithmParameterException;
51 throws InvalidAlgorithmParameterException {
53 throw new InvalidAlgorithmParameterException("no parameters " +
H A DDOMCanonicalizationMethod.java30 import java.security.InvalidAlgorithmParameterException;
52 throws InvalidAlgorithmParameterException {
56 throw new InvalidAlgorithmParameterException(
H A DDOMXPathTransform.java33 import java.security.InvalidAlgorithmParameterException;
50 throws InvalidAlgorithmParameterException {
52 throw new InvalidAlgorithmParameterException("params are required");
54 throw new InvalidAlgorithmParameterException
61 throws InvalidAlgorithmParameterException {
H A DDOMXPathFilter2Transform.java41 import java.security.InvalidAlgorithmParameterException;
60 throws InvalidAlgorithmParameterException {
62 throw new InvalidAlgorithmParameterException("params are required");
64 throw new InvalidAlgorithmParameterException
71 throws InvalidAlgorithmParameterException {
77 throw (InvalidAlgorithmParameterException)
78 new InvalidAlgorithmParameterException().initCause(me);
H A DDOMHMACSignatureMethod.java34 import java.security.InvalidAlgorithmParameterException;
67 * @throws InvalidAlgorithmParameterException if params are inappropriate
70 throws InvalidAlgorithmParameterException {
84 throws InvalidAlgorithmParameterException {
87 throw new InvalidAlgorithmParameterException
195 throws InvalidAlgorithmParameterException {
214 throws InvalidAlgorithmParameterException {
233 throws InvalidAlgorithmParameterException {
252 throws InvalidAlgorithmParameterException {
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DDHParameterGenerator.java89 * @exception InvalidAlgorithmParameterException if the given parameter
94 throws InvalidAlgorithmParameterException {
96 throw new InvalidAlgorithmParameterException
104 throw new InvalidAlgorithmParameterException
111 throw new InvalidAlgorithmParameterException
117 throw new InvalidAlgorithmParameterException
H A DHmacPKCS12PBESHA1.java74 u* @exception InvalidAlgorithmParameterException if the given algorithm
78 throws InvalidKeyException, InvalidAlgorithmParameterException {
109 throw new InvalidAlgorithmParameterException
116 throw new InvalidAlgorithmParameterException
124 throw new InvalidAlgorithmParameterException
135 throw new InvalidAlgorithmParameterException
139 throw new InvalidAlgorithmParameterException
H A DTlsRsaPremasterSecretGenerator.java58 SecureRandom random) throws InvalidAlgorithmParameterException {
60 throw new InvalidAlgorithmParameterException(MSG);
H A DDHKeyPairGenerator.java106 * @exception InvalidAlgorithmParameterException if the given parameters
110 SecureRandom random) throws InvalidAlgorithmParameterException {
112 throw new InvalidAlgorithmParameterException
120 throw new InvalidAlgorithmParameterException
130 throw new InvalidAlgorithmParameterException
H A DDESKeyGenerator.java30 import java.security.InvalidAlgorithmParameterException;
70 * @exception InvalidAlgorithmParameterException if <code>params</code> is
75 throws InvalidAlgorithmParameterException {
76 throw new InvalidAlgorithmParameterException
H A DDESedeKeyGenerator.java33 import java.security.InvalidAlgorithmParameterException;
71 * @exception InvalidAlgorithmParameterException if <code>params</code> is
76 throws InvalidAlgorithmParameterException {
77 throw new InvalidAlgorithmParameterException
H A DKeyGeneratorCore.java81 throws InvalidAlgorithmParameterException {
82 throw new InvalidAlgorithmParameterException
118 SecureRandom random) throws InvalidAlgorithmParameterException {
139 SecureRandom random) throws InvalidAlgorithmParameterException {
160 SecureRandom random) throws InvalidAlgorithmParameterException {
181 SecureRandom random) throws InvalidAlgorithmParameterException {
206 SecureRandom random) throws InvalidAlgorithmParameterException {
H A DTlsMasterSecretGenerator.java61 SecureRandom random) throws InvalidAlgorithmParameterException {
63 throw new InvalidAlgorithmParameterException(MSG);
67 throw new InvalidAlgorithmParameterException(
73 throw new InvalidAlgorithmParameterException(
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11KeyPairGenerator.java94 } catch (InvalidAlgorithmParameterException e) {
112 throws InvalidAlgorithmParameterException {
116 throw new InvalidAlgorithmParameterException
127 throw new InvalidAlgorithmParameterException
139 throw new InvalidAlgorithmParameterException
154 throw new InvalidAlgorithmParameterException
161 throw new InvalidAlgorithmParameterException
165 throw new InvalidAlgorithmParameterException
179 throws InvalidAlgorithmParameterException {
182 throw new InvalidAlgorithmParameterException
[all...]
H A DP11KeyGenerator.java82 throws InvalidAlgorithmParameterException, ProviderException {
87 throw new InvalidAlgorithmParameterException
99 throw new InvalidAlgorithmParameterException
131 throw new InvalidAlgorithmParameterException
138 throw new InvalidAlgorithmParameterException
200 } catch (InvalidAlgorithmParameterException iape) {
213 SecureRandom random) throws InvalidAlgorithmParameterException {
214 throw new InvalidAlgorithmParameterException
224 } catch (InvalidAlgorithmParameterException iape) {
H A DP11TlsMasterSecretGenerator.java78 SecureRandom random) throws InvalidAlgorithmParameterException {
80 throw new InvalidAlgorithmParameterException(MSG);
89 throw new InvalidAlgorithmParameterException("init() failed", e);
93 throw new InvalidAlgorithmParameterException
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DCertStoreHelper.java31 import java.security.InvalidAlgorithmParameterException;
49 throws NoSuchAlgorithmException, InvalidAlgorithmParameterException;
/openjdk7/jdk/test/java/security/cert/PKIXParameters/
H A DInvalidParameters.java32 import java.security.InvalidAlgorithmParameterException;
50 } catch (InvalidAlgorithmParameterException iape) { }
54 } catch (InvalidAlgorithmParameterException iape) { }
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSAKeyPairGenerator.java80 throws InvalidAlgorithmParameterException {
83 throw new InvalidAlgorithmParameterException
95 throw new InvalidAlgorithmParameterException
99 throw new InvalidAlgorithmParameterException
109 throw new InvalidAlgorithmParameterException(
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DKeyAgreementSpi.java101 * @exception InvalidAlgorithmParameterException if the given parameters
106 throws InvalidKeyException, InvalidAlgorithmParameterException;
/openjdk7/jdk/src/share/classes/sun/security/ec/
H A DECKeyPairGenerator.java86 throws InvalidAlgorithmParameterException {
91 throw new InvalidAlgorithmParameterException(
98 throw new InvalidAlgorithmParameterException(
102 throw new InvalidAlgorithmParameterException(
/openjdk7/jdk/test/java/security/cert/
H A DGetInstance.java28 * CertificateFactory}.getInstance throws InvalidAlgorithmParameterException
45 "InvalidAlgorithmParameterException");
46 } catch (InvalidAlgorithmParameterException iape) { }

Completed in 48 milliseconds

123456