Searched defs:algName (Results 1 - 8 of 8) sorted by relevance
| /openjdk7/jdk/src/share/classes/sun/security/pkcs12/ |
| H A D | MacData.java | 85 MacData(String algName, byte[] digest, byte[] salt, int iterations) argument 88 if (algName == null) 89 throw new NullPointerException("the algName parameter " + 92 AlgorithmId algid = AlgorithmId.get(algName);
|
| /openjdk7/jdk/src/share/classes/javax/crypto/ |
| H A D | EncryptedPrivateKeyInfo.java | 116 * @param algName encryption algorithm name. See Appendix A in the 124 * @exception NullPointerException if <code>algName</code> or 128 * @exception NoSuchAlgorithmException if the specified algName is 131 public EncryptedPrivateKeyInfo(String algName, byte[] encryptedData) argument 134 if (algName == null) 135 throw new NullPointerException("the algName parameter " + 137 this.algid = AlgorithmId.get(algName); 169 * @exception NoSuchAlgorithmException if the specified algName of
|
| /openjdk7/jdk/test/javax/xml/crypto/dsig/ |
| H A D | X509KeySelector.java | 273 private boolean algEquals(String algURI, String algName) { argument 274 if (algName.equalsIgnoreCase("DSA") && 277 } else if (algName.equalsIgnoreCase("RSA") &&
|
| H A D | KeySelectors.java | 176 static boolean algEquals(String algURI, String algName) { argument 177 if (algName.equalsIgnoreCase("DSA") && 180 } else if (algName.equalsIgnoreCase("RSA") &&
|
| /openjdk7/jdk/src/share/demo/applets/SortDemo/ |
| H A D | SortItem.java | 80 String algName; field in class:SortItem 149 algName = at + "Algorithm"; 253 algorithm = (SortAlgorithm) Class.forName(algName).newInstance();
|
| /openjdk7/jdk/src/share/classes/java/security/ |
| H A D | Security.java | 289 * @param algName the algorithm name. 303 public static String getAlgorithmProperty(String algName, argument 306 + "." + algName); 874 String algName = filterComponents[1]; 877 return getProvidersNotUsingCache(serviceName, algName, attrName, 883 String algName, 890 algName, 904 String algName, 907 String key = serviceName + '.' + algName; 921 algName, 881 getProvidersNotUsingCache( String serviceName, String algName, String attrName, String filterValue, Provider[] allProviders) argument 902 isCriterionSatisfied(Provider prov, String serviceName, String algName, String attrName, String filterValue) argument [all...] |
| /openjdk7/jdk/src/share/classes/com/sun/crypto/provider/ |
| H A D | CipherCore.java | 320 AlgorithmParameters getParameters(String algName) { argument 326 if (algName.equals("RC2")) { 334 params = AlgorithmParameters.getInstance(algName, "SunJCE"); 337 throw new RuntimeException("Cannot find " + algName +
|
| /openjdk7/jdk/src/share/classes/com/sun/net/ssl/ |
| H A D | SSLSecurity.java | 75 private static Object[] getImpl1(String algName, String engineType, argument 149 obj = new SSLContextSpiWrapper(algName, provider); 151 obj = new TrustManagerFactorySpiWrapper(algName, provider); 153 obj = new KeyManagerFactorySpiWrapper(algName, provider); 176 engineType + " " + algName); 195 static Object[] getImpl(String algName, String engineType, String provName) argument 206 service = prov.getService(engineType, algName); 208 service = getService(engineType, algName); 211 throw new NoSuchAlgorithmException("Algorithm " + algName 214 return getImpl1(algName, engineTyp 226 getImpl(String algName, String engineType, Provider prov) argument 284 SSLContextSpiWrapper(String algName, Provider prov) argument 395 TrustManagerFactorySpiWrapper(String algName, Provider prov) argument 446 KeyManagerFactorySpiWrapper(String algName, Provider prov) argument [all...] |
Completed in 42 milliseconds