HomeSort by relevance Sort by last modified time
    Searched refs:algorithm (Results 51 - 75 of 492) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
MessageDigestAlgorithm.java 10 * MD5 algorithm
20 * @param algorithm a string indicating a pair of algorithms (MD5 (default), or MD5-sess) used
38 static String calculateResponse(String algorithm, String hashUserNameRealmPasswd,
43 stackLogger.logDebug("trying to authenticate using : " + algorithm + ", "+
54 // The following follows closely the algorithm for generating a response
59 "cnonce_value may not be absent for MD5-Sess algorithm.");
94 * @param algorithm a string indicating a pair of algorithms (MD5 (default), or MD5-sess) used
114 static String calculateResponse(String algorithm, String username_value, String realm_value,
119 stackLogger.logDebug("trying to authenticate using : " + algorithm + ", "
131 // The following follows closely the algorithm for generating a respons
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/x509/
X509Util.java 196 String algorithm)
199 return Signature.getInstance(algorithm);
203 String algorithm,
209 return Signature.getInstance(algorithm, provider);
213 return Signature.getInstance(algorithm);
229 throw new IllegalStateException("no signature algorithm specified");
261 throw new IllegalStateException("no signature algorithm specified");
318 * see if we can find an algorithm (or its alias and what it represents) in
323 String algorithm,
327 algorithm = Strings.toUpperCase(algorithm)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLSignature.java 96 * Holds the OpenSSL name of the algorithm (lower case, no dashes).
106 * Creates a new OpenSSLSignature instance for the given algorithm name.
108 * @param algorithm The name of the algorithm, e.g. "SHA1WithRSA".
114 public static OpenSSLSignature getInstance(String algorithm) throws NoSuchAlgorithmException {
115 // System.out.println("getInstance() invoked with " + algorithm);
117 Class <? extends OpenSSLSignature> clazz = jdkToOpenSsl.get(algorithm);
119 throw new NoSuchAlgorithmException(algorithm);
124 throw new NoSuchAlgorithmException(algorithm, e);
126 throw new NoSuchAlgorithmException(algorithm, e)
    [all...]
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
KeyManagerFactoryTest.java 48 String algorithm = KeyManagerFactory.getDefaultAlgorithm(); local
49 assertEquals(StandardNames.KEY_MANAGER_FACTORY_DEFAULT, algorithm);
50 KeyManagerFactory kmf = KeyManagerFactory.getInstance(algorithm);
157 String algorithm = service.getAlgorithm(); local
160 KeyManagerFactory kmf = KeyManagerFactory.getInstance(algorithm);
161 assertEquals(algorithm, kmf.getAlgorithm());
166 KeyManagerFactory kmf = KeyManagerFactory.getInstance(algorithm,
168 assertEquals(algorithm, kmf.getAlgorithm());
174 KeyManagerFactory kmf = KeyManagerFactory.getInstance(algorithm,
176 assertEquals(algorithm, kmf.getAlgorithm())
    [all...]
  /libcore/luni/src/main/java/java/security/
Provider.java 58 // Contains "Service.Algorithm" and Provider.Service classes added using
66 // Contains "Service.Algorithm" and Provider.Service classes added using
76 // For getService(String type, String algorithm) optimization:
355 * Returns true if this provider implements the given algorithm. Caller
362 * Algorithm or type.
452 * specified {@code algorithm}, or {@code null} if no such implementation
455 * If two services match the requested type and algorithm, the one added
461 * @param algorithm
462 * the algorithm name (case insensitive)
467 String algorithm) {
661 String algorithm = null; local
727 String algorithm; local
909 private String algorithm; field in class:Provider.Service
    [all...]
  /external/chromium/net/base/
network_change_notifier_helper.cc 6 #include <algorithm>
  /external/stlport/test/unit/
advance_test.cpp 2 #include <algorithm>
bnegate_test.cpp 1 #include <algorithm>
bsearch_test.cpp 1 #include <algorithm>
greater_test.cpp 2 #include <algorithm>
less_test.cpp 2 #include <algorithm>
lexcmp_test.cpp 2 #include <algorithm>
neq_test.cpp 2 #include <algorithm>
ostmit_test.cpp 5 #include <algorithm>
plusminus_test.cpp 2 #include <algorithm>
  /ndk/sources/android/stlport/test/unit/
advance_test.cpp 2 #include <algorithm>
bnegate_test.cpp 1 #include <algorithm>
bsearch_test.cpp 1 #include <algorithm>
greater_test.cpp 2 #include <algorithm>
less_test.cpp 2 #include <algorithm>
lexcmp_test.cpp 2 #include <algorithm>
neq_test.cpp 2 #include <algorithm>
ostmit_test.cpp 5 #include <algorithm>
plusminus_test.cpp 2 #include <algorithm>
  /external/ipsec-tools/src/racoon/
getcertsbyname.c 70 getnewci(qtype, keytag, algorithm, flags, certlen, cert)
71 int qtype, keytag, algorithm, flags, certlen;
83 res->ci_algorithm = algorithm;
127 int type, keytag, algorithm; local
170 algorithm = *cp++; /* algorithm */
175 type, keytag, algorithm, rdlength);
179 cur->ci_next = getnewci(type, keytag, algorithm,
214 int qtype, qclass, keytag, algorithm; local
303 algorithm = *cp++; /* algorithm *
    [all...]

Completed in 189 milliseconds

1 23 4 5 6 7 8 91011>>