Searched refs:NoSuchAlgorithmException (Results 76 - 100 of 224) sorted by relevance

123456789

/openjdk7/jdk/src/share/classes/com/sun/net/ssl/
H A DSSLSecurity.java76 Service service) throws NoSuchAlgorithmException
90 throw new NoSuchAlgorithmException("Class " + className +
96 throw new NoSuchAlgorithmException("Class " + className +
174 throw new NoSuchAlgorithmException(
196 throws NoSuchAlgorithmException, NoSuchProviderException
211 throw new NoSuchAlgorithmException("Algorithm " + algName
227 throws NoSuchAlgorithmException
231 throw new NoSuchAlgorithmException("No such algorithm: " +
285 NoSuchAlgorithmException {
396 NoSuchAlgorithmException {
[all...]
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DARCFOURCipher.java114 protected void engineSetMode(String mode) throws NoSuchAlgorithmException {
116 throw new NoSuchAlgorithmException("Unsupported mode " + mode);
252 int type) throws InvalidKeyException, NoSuchAlgorithmException {
H A DSslMacCore.java59 throws NoSuchAlgorithmException {
201 public SslMacMD5() throws NoSuchAlgorithmException {
234 public SslMacSHA1() throws NoSuchAlgorithmException {
H A DAESCipher.java69 * @exception NoSuchAlgorithmException if the requested cipher mode does
73 throws NoSuchAlgorithmException {
412 * @exception NoSuchAlgorithmException if no installed providers
423 throws InvalidKeyException, NoSuchAlgorithmException {
H A DBlowfishCipher.java74 * @exception NoSuchAlgorithmException if the requested cipher mode does
78 throws NoSuchAlgorithmException {
413 * @exception NoSuchAlgorithmException if no installed providers
424 throws InvalidKeyException, NoSuchAlgorithmException {
H A DCipherCore.java151 * @exception NoSuchAlgorithmException if the requested cipher mode does
154 void setMode(String mode) throws NoSuchAlgorithmException {
156 throw new NoSuchAlgorithmException("null mode");
196 throw new NoSuchAlgorithmException("Cipher mode: " + mode
202 throws NoSuchAlgorithmException {
211 throw new NoSuchAlgorithmException
215 throw new NoSuchAlgorithmException
335 } catch (NoSuchAlgorithmException nsae) {
919 * @exception NoSuchAlgorithmException if no installed providers
929 throws InvalidKeyException, NoSuchAlgorithmException {
[all...]
H A DDESCipher.java69 * @exception NoSuchAlgorithmException if the requested cipher mode does
73 throws NoSuchAlgorithmException {
413 * @exception NoSuchAlgorithmException if no installed providers
424 throws InvalidKeyException, NoSuchAlgorithmException {
H A DDESedeCipher.java66 * @exception NoSuchAlgorithmException if the requested cipher mode does
70 throws NoSuchAlgorithmException {
411 * @exception NoSuchAlgorithmException if no installed providers
422 throws InvalidKeyException, NoSuchAlgorithmException {
H A DRC2Cipher.java53 throws NoSuchAlgorithmException {
147 NoSuchAlgorithmException {
H A DPKCS12PBECipherCore.java152 throws NoSuchAlgorithmException {
160 throw new NoSuchAlgorithmException("No Cipher implementation " +
174 void implSetMode(String mode) throws NoSuchAlgorithmException {
176 throw new NoSuchAlgorithmException("Invalid cipher mode: "
375 throws InvalidKeyException, NoSuchAlgorithmException {
382 public PBEWithSHA1AndDESede() throws NoSuchAlgorithmException {
427 throws NoSuchAlgorithmException {
437 throws InvalidKeyException, NoSuchAlgorithmException {
457 public PBEWithSHA1AndRC2_40() throws NoSuchAlgorithmException {
502 throws NoSuchAlgorithmException {
[all...]
H A DDHKeyAgreement.java34 import java.security.NoSuchAlgorithmException;
358 * @exception NoSuchAlgorithmException if the requested secret key
365 throws IllegalStateException, NoSuchAlgorithmException,
369 throw new NoSuchAlgorithmException("null algorithm");
410 throw new NoSuchAlgorithmException("Unsupported secret key "
H A DHmacCore.java71 HmacCore(String digestAlgorithm, int bl) throws NoSuchAlgorithmException {
243 public HmacSHA256() throws NoSuchAlgorithmException {
279 public HmacSHA384() throws NoSuchAlgorithmException {
315 public HmacSHA512() throws NoSuchAlgorithmException {
H A DHmacMD5.java48 public HmacMD5() throws NoSuchAlgorithmException {
H A DHmacSHA1.java48 public HmacSHA1() throws NoSuchAlgorithmException {
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/
H A DHttpsCreateSockTest.java43 import java.security.NoSuchAlgorithmException;
96 } catch (NoSuchAlgorithmException e) {
126 public void startHttpsServer() throws IOException, NoSuchAlgorithmException {
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DPKCS10.java35 import java.security.NoSuchAlgorithmException;
117 * @exception NoSuchAlgorithmException when the signature
121 throws IOException, SignatureException, NoSuchAlgorithmException {
229 } catch (NoSuchAlgorithmException nsae) {
/openjdk7/jdk/test/java/security/Policy/GetInstance/
H A DGetInstance.java72 } catch (NoSuchAlgorithmException nsae) {
91 } catch (NoSuchAlgorithmException nsae) {
123 } catch (NoSuchAlgorithmException nsae) {
/openjdk7/jdk/test/javax/crypto/Cipher/
H A DByteBuffersNull.java34 import java.security.NoSuchAlgorithmException;
132 throws NoSuchAlgorithmException { }
193 NoSuchAlgorithmException {
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/content/keyvalues/
H A DRSAKeyValue.java26 import java.security.NoSuchAlgorithmException;
118 } catch (NoSuchAlgorithmException ex) {
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/
H A DCramMD5Base.java32 import java.security.NoSuchAlgorithmException;
157 throws NoSuchAlgorithmException {
/openjdk7/jdk/test/sun/security/util/Oid/
H A DOidFormat.java34 import java.security.NoSuchAlgorithmException;
169 } catch (NoSuchAlgorithmException e) {
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DMAC.java30 import java.security.NoSuchAlgorithmException;
97 throws NoSuchAlgorithmException, InvalidKeyException {
/openjdk7/jdk/test/javax/crypto/JceSecurity/
H A DMyX509CertImpl.java179 throws CertificateException, NoSuchAlgorithmException,
193 throws CertificateException, NoSuchAlgorithmException,
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCipher.java286 throws NoSuchAlgorithmException {
288 throw new NoSuchAlgorithmException("No transformation given");
305 throw new NoSuchAlgorithmException("Invalid transformation"
310 throw new NoSuchAlgorithmException("Invalid transformation " +
314 throw new NoSuchAlgorithmException("Invalid transformation:" +
354 void setModePadding(CipherSpi spi) throws NoSuchAlgorithmException,
411 throws NoSuchAlgorithmException {
473 * @exception NoSuchAlgorithmException if <code>transformation</code>
484 throws NoSuchAlgorithmException, NoSuchPaddingException
524 throw new NoSuchAlgorithmException
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DMessageDigest.java150 * @exception NoSuchAlgorithmException if no Provider supports a
157 throws NoSuchAlgorithmException {
172 throw new NoSuchAlgorithmException(algorithm + " not found");
198 * @exception NoSuchAlgorithmException if a MessageDigestSpi
211 throws NoSuchAlgorithmException, NoSuchProviderException
247 * @exception NoSuchAlgorithmException if a MessageDigestSpi
259 throws NoSuchAlgorithmException

Completed in 66 milliseconds

123456789