Home | History | Annotate | Download | only in auth

Lines Matching refs:charset

60  * Credential charset is configured via the 
62 * credential charset} parameter.
64 * Authentication header, the charset of the username must be compatible
67 * http element charset}.
233 String charset = getParameter("charset");
234 if (charset == null) {
235 charset = AuthParams.getCredentialCharset(request.getParams());
236 getParameters().put("charset", charset);
280 // If an charset is not specified, default to ISO-8859-1.
281 String charset = getParameter("charset");
282 if (charset == null) {
283 charset = "ISO-8859-1";
314 String tmp2=encode(md5Helper.digest(EncodingUtils.getBytes(a1, charset)));
325 String md5a1 = encode(md5Helper.digest(EncodingUtils.getBytes(a1, charset)));