Searched defs:authzid (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/security/sasl/
H A DCramMD5Server.java51 * - auth id == authzid, but needed to get canonicalized authzid
58 private String authzid; field in class:CramMD5Server
214 authzid = acb.getAuthorizedID();
223 "CRAMSRV05:Authorization id: {0}", authzid);
247 return authzid;
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/gsskerb/
H A DGssKrb5Server.java53 * authorized ID to be the canonicalized authzid (if applicable).
71 private String authzid; field in class:GssKrb5Server
282 authzid = new String(gssOutToken, 4,
285 throw new SaslException ("Cannot decode authzid", uee);
288 authzid = peer;
290 logger.log(Level.FINE, "KRB5SRV12:Authzid: {0}", authzid);
292 AuthorizeCallback acb = new AuthorizeCallback(peer, authzid);
297 authzid = acb.getAuthorizedID();
302 " is not authorized to connect as " + authzid);
317 return authzid;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/ntlm/
H A DNTLMClient.java113 NTLMClient(String mech, String authzid, String protocol, String serverName, argument
139 NameCallback ncb = (authzid != null && !authzid.isEmpty()) ?
140 new NameCallback("User name: ", authzid) :
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/digest/
H A DDigestMD5Client.java141 private byte[] authzidBytes; // byte repr of authzid
146 * @param authzid A non-null String representing the principal
155 DigestMD5Client(String authzid, String protocol, String serverName, argument
161 if (authzid != null) {
162 this.authzid = authzid;
164 authzidBytes = authzid.getBytes("UTF8");
168 "DIGEST-MD5: Error encoding authzid value into UTF-8", e);
329 NameCallback ncb = authzid == null ?
331 new NameCallback("DIGEST-MD5 authentication ID: ", authzid);
[all...]
H A DDigestMD5Base.java147 /* Used to obtain authorization, pw info, canonicalized authzid for server */
164 protected String authzid; // authzid or canonicalized authzid field in class:DigestMD5Base
543 // : nonce-value, : cnonce-value : authzid-value

Completed in 38 milliseconds