Home | History | Annotate | Download | only in auth

Lines Matching defs:algorithm

253               "Unsupported algorithm in HTTP Digest authentication: "
263 * @throws AuthenticationException when MD5 is an unsupported algorithm
271 String algorithm = getParameter("algorithm");
281 // If an algorithm is not specified, default to MD5.
282 if (algorithm == null) {
283 algorithm = "MD5";
311 //a1 is suitable for MD5 algorithm
312 if(algorithm.equalsIgnoreCase("MD5-sess")) { // android-changed: ignore case
327 } else if (!algorithm.equalsIgnoreCase("MD5")) { // android-changed: ignore case
328 throw new AuthenticationException("Unhandled algorithm " + algorithm + " requested");
403 String algorithm = getParameter("algorithm");
419 if (algorithm != null) {
420 params.add(new BasicNameValuePair("algorithm", algorithm));
477 * @throws UnsupportedDigestAlgorithmException if MD5 algorithm is not supported.