HomeSort by relevance Sort by last modified time
    Searched refs:Challenge (Results 1 - 18 of 18) sorted by null

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
OkAuthenticator.java 31 * Returns a credential that satisfies the authentication challenge made by
32 * {@code url}. Returns null if the challenge cannot be satisfied. This method
36 * @param challenges parsed "WWW-Authenticate" challenge headers from the HTTP
39 Credential authenticate(Proxy proxy, URL url, List<Challenge> challenges) throws IOException;
42 * Returns a credential that satisfies the authentication challenge made by
43 * {@code proxy}. Returns null if the challenge cannot be satisfied. This
47 * @param challenges parsed "Proxy-Authenticate" challenge headers from the
50 Credential authenticateProxy(Proxy proxy, URL url, List<Challenge> challenges) throws IOException;
52 /** An RFC 2617 challenge. */
53 public final class Challenge {
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
RecordingOkAuthenticator.java 27 public final List<List<Challenge>> challengesList = new ArrayList<List<Challenge>>();
40 public List<Challenge> onlyChallenge() {
50 @Override public Credential authenticate(Proxy proxy, URL url, List<Challenge> challenges)
58 @Override public Credential authenticateProxy(Proxy proxy, URL url, List<Challenge> challenges)
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpAuthenticator.java 21 import com.squareup.okhttp.OkAuthenticator.Challenge;
43 Proxy proxy, URL url, List<Challenge> challenges) throws IOException {
45 Challenge challenge = challenges.get(i);
46 if (!"Basic".equalsIgnoreCase(challenge.getScheme())) {
52 challenge.getRealm(), challenge.getScheme(), url, Authenticator.RequestorType.SERVER);
61 Proxy proxy, URL url, List<Challenge> challenges) throws IOException {
63 Challenge challenge = challenges.get(i)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Challenge.java 34 * Challenge part of the Auth header. This is only used by the parser interface
41 public class Challenge extends SIPObject {
72 public Challenge() {
78 * Encode the challenge in canonical form.
252 Challenge retval = (Challenge) super.clone();
AuthenticationHeader.java 143 * @param challenge --
144 * the challenge from which the parameters are extracted.
146 public void setChallenge(Challenge challenge) {
147 this.scheme = challenge.scheme;
148 super.parameters = challenge.authParams;
162 * Sets the scheme of the challenge information for this
166 * the new string value that identifies the challenge information
174 * Returns the scheme of the challenge information for this
177 * @return the string value of the challenge information
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary.compat 16 ATTRIBUTE Challenge-State 24 string
dictionary.microsoft 22 ATTRIBUTE MS-CHAP-Challenge 11 string Microsoft
47 #ATTRIBUTE MS-ARAP-Challenge 33 string Microsoft
dictionary 85 ATTRIBUTE Chap-Challenge 60 string
  /external/smack/src/org/jivesoftware/smack/
BOSHPacketReader.java 26 import org.jivesoftware.smack.sasl.SASLMechanism.Challenge;
89 } else if (parser.getName().equals("challenge")) {
95 connection.processPacket(new Challenge(
PacketReader.java 25 import org.jivesoftware.smack.sasl.SASLMechanism.Challenge;
246 else if (parser.getName().equals("challenge")) {
249 processPacket(new Challenge(challengeData));
  /external/ppp/pppd/
chap_ms.c 154 { "mschap-challenge", o_string, &mschap_challenge,
155 "specify CHAP challenge" },
156 { "mschap2-peer-challenge", o_string, &mschap2_peer_challenge,
157 "specify CHAP peer challenge" },
163 * chapms_generate_challenge - generate a challenge for MS-CHAP.
164 * For MS-CHAP the challenge length is fixed at 8 bytes.
165 * The length goes in challenge[0] and the actual challenge starts
166 * at challenge[1].
169 chapms_generate_challenge(unsigned char *challenge)
    [all...]
  /external/smack/src/org/jivesoftware/smack/sasl/
SASLMechanism.java 52 * <li>{@link #challengeReceived(String)} -- Handle a challenge from the server.</li>
131 * response to the server's challenge.
133 * @param challenge a base64 encoded string representing the challenge.
136 public void challengeReceived(String challenge) throws IOException {
138 if(challenge != null) {
139 response = sc.evaluateChallenge(StringUtils.decodeBase64(challenge));
220 * A SASL challenge stanza.
222 public static class Challenge extends Packet {
225 public Challenge(String data) {
    [all...]
  /external/ppp/pppd/plugins/
winbind.c 100 unsigned char *challenge,
254 const u_char *challenge,
361 sprintf(challenge_hex + i * 2, "%02X", challenge[i]);
363 fprintf(pipe_in, "LANMAN-Challenge: %s\n", challenge_hex);
519 unsigned char *challenge,
531 challenge_len = *challenge++;
587 challenge,
595 mppe_set_keys(challenge, session_key);
605 challenge_len, challenge);
614 u_char Challenge[8]
    [all...]
  /external/chromium_org/chrome/browser/resources/cryptotoken/
usbsignhandler.js 96 var challenge = signResult['challenge'];
98 this.notifySuccess_(gnubby, challenge, info);
114 * @param {SignHelperChallenge} challenge Challenge signed
118 UsbSignHandler.prototype.notifySuccess_ = function(gnubby, challenge, info) {
131 'appIdHash': B64_encode(challenge['appIdHash']),
132 'challengeHash': B64_encode(challenge['challengeHash']),
133 'keyHandle': B64_encode(challenge['keyHandle']),
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
URLConnectionTest.java 21 import com.squareup.okhttp.OkAuthenticator.Challenge;
    [all...]
  /external/google-tv-pairing-protocol/java/jar/
bcprov-jdk15-143.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 

Completed in 570 milliseconds