Searched defs:challenge (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/security/sasl/
H A DSaslClient.java81 * challenge and to get initial response.
86 * When the server responds to the command, it sends an initial challenge.
88 * have issued a challenge with no data. This will then result in a call
89 * (on the client) to <tt>evaluateChallenge()</tt> with an empty challenge.
118 * Evaluates the challenge data and generates a response.
119 * If a challenge is received from the server during the authentication
123 * @param challenge The non-null challenge sent from the server.
124 * The challenge array may have zero length.
127 * It is null if the challenge accompanie
134 evaluateChallenge(byte[] challenge) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/ntlm/
H A DNTLMClient.java220 public byte[] evaluateChallenge(byte[] challenge) throws SaslException { argument
228 return client.type3(challenge, nonce);
/openjdk7/jdk/src/solaris/classes/sun/net/www/protocol/http/ntlm/
H A DNTLMAuthentication.java237 private String buildType3Msg (String challenge) throws GeneralSecurityException, argument
242 byte[] type2 = (new sun.misc.BASE64Decoder()).decodeBuffer (challenge);
/openjdk7/jdk/src/share/classes/com/sun/security/ntlm/
H A DNTLM.java379 byte[] calcV2(byte[] nthash, String text, byte[] blob, byte[] challenge) { argument
384 System.arraycopy(challenge, 0, cn, 0, 8);
402 byte[] ntlm2NTLM(byte[] ntlmHash, byte[] nonce, byte[] challenge) { argument
403 byte[] b = Arrays.copyOf(challenge, 16);

Completed in 32 milliseconds