Home
last modified time | relevance | path

Searched refs:wwwAuthenticate (Results 1 – 2 of 2) sorted by relevance

/unit/src/java/nginx/unit/websocket/
H A DDigestAuthenticator.java49 Map<String, String> wwwAuthenticate = parseWWWAuthenticateHeader(WWWAuthenticate); in getAuthorization() local
51 String realm = wwwAuthenticate.get("realm"); in getAuthorization()
52 String nonce = wwwAuthenticate.get("nonce"); in getAuthorization()
53 String messageQop = wwwAuthenticate.get("qop"); in getAuthorization()
54 String algorithm = wwwAuthenticate.get("algorithm") == null ? "MD5" in getAuthorization()
55 : wwwAuthenticate.get("algorithm"); in getAuthorization()
56 String opaque = wwwAuthenticate.get("opaque"); in getAuthorization()
H A DBasicAuthenticator.java44 Map<String, String> wwwAuthenticate = parseWWWAuthenticateHeader(WWWAuthenticate); in getAuthorization() local
49 if (wwwAuthenticate.get(charsetparam) != null in getAuthorization()
50 && wwwAuthenticate.get(charsetparam).equalsIgnoreCase("UTF-8")) { in getAuthorization()