HomeSort by relevance Sort by last modified time
    Searched refs:Challenge (Results 1 - 8 of 8) 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/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 

Completed in 834 milliseconds