Home
last modified time | relevance | path

Searched refs:password (Results 1 – 3 of 3) sorted by last modified time

/unit/src/java/nginx/unit/websocket/
H A DDigestAuthenticator.java42 String password = (String) userProperties.get(Constants.WS_AUTHENTICATION_PASSWORD); in getAuthorization() local
44 if (userName == null || password == null) { in getAuthorization()
76 challenge.append("response=\"" + calculateRequestDigest(requestUri, userName, password, in getAuthorization()
98 private String calculateRequestDigest(String requestUri, String userName, String password, in calculateRequestDigest() argument
106 A1 = userName + ":" + realm + ":" + password; in calculateRequestDigest()
109 A1 = encodeMD5(userName + ":" + realm + ":" + password) + ":" + nonce + ":" + cNonce; in calculateRequestDigest()
H A DBasicAuthenticator.java37 String password = (String) userProperties.get(Constants.WS_AUTHENTICATION_PASSWORD); in getAuthorization() local
39 if (userName == null || password == null) { in getAuthorization()
46 String userPass = userName + ":" + password; in getAuthorization()
/unit/src/java/nginx/unit/
H A DRequest.java644 public void login(String username, String password) throws ServletException in login() argument
646 log("login: " + username + "," + password); in login()