Searched refs:Challenge (Results 1 - 14 of 14) sorted by relevance

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DChallenge.java21 public final class Challenge { class
25 public Challenge(String scheme, String realm) { method in class:Challenge
41 return o instanceof Challenge
42 && equal(scheme, ((Challenge) o).scheme)
43 && equal(realm, ((Challenge) o).realm);
H A DResponse.java188 public List<Challenge> challenges() {
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DChallenge.java34 * Challenge part of the Auth header. This is only used by the parser interface
41 public class Challenge extends SIPObject { class in inherits:SIPObject
72 public Challenge() { method in class:Challenge
252 Challenge retval = (Challenge) super.clone();
H A DAuthenticationHeader.java146 public void setChallenge(Challenge challenge) {
206 * method returns only the realm of the complete Challenge.
/external/jetty/src/java/org/eclipse/jetty/server/
H A DAuthentication.java103 /** An Authentication Challenge has been sent.
105 public interface Challenge extends ResponseSent interface in interface:Authentication
143 public final static Authentication SEND_CONTINUE = new Authentication.Challenge(){@Override
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DAuthenticatorAdapter.java19 import com.squareup.okhttp.Challenge;
38 List<Challenge> challenges = response.challenges();
42 Challenge challenge = challenges.get(i);
60 List<Challenge> challenges = response.challenges();
64 Challenge challenge = challenges.get(i);
H A DOkHeaders.java4 import com.squareup.okhttp.Challenge;
234 public static List<Challenge> parseChallenges(Headers responseHeaders, String challengeHeader) {
240 List<Challenge> result = new ArrayList<>();
270 result.add(new Challenge(scheme, realm));
/external/ppp/pppd/plugins/radius/etc/
H A Ddictionary.compat16 ATTRIBUTE Challenge-State 24 string
H A Ddictionary.microsoft22 ATTRIBUTE MS-CHAP-Challenge 11 string Microsoft
47 #ATTRIBUTE MS-ARAP-Challenge 33 string Microsoft
H A Ddictionary85 ATTRIBUTE Chap-Challenge 60 string
/external/ppp/pppd/
H A Dchap_ms.c539 char *username, u_char Challenge[8])
558 BCOPY(sha1Hash, Challenge, 8);
626 u_char Challenge[8]; local
628 ChallengeHash(PeerChallenge, rchallenge, username, Challenge);
634 ChallengeResponse(Challenge, PasswordHash, NTResponse);
685 u_char Challenge[8]; local
693 ChallengeHash(PeerChallenge, rchallenge, username, Challenge);
697 SHA1_Update(&sha1Context, Challenge, sizeof(Challenge));
932 /* Generate the Peer-Challenge i
538 ChallengeHash(u_char PeerChallenge[16], u_char *rchallenge, char *username, u_char Challenge[8]) argument
[all...]
/external/ppp/pppd/plugins/
H A Dwinbind.c357 fprintf(pipe_in, "LANMAN-Challenge: %s\n", challenge_hex);
603 u_char Challenge[8]; local
611 user, Challenge);
619 Challenge, 8,
656 error("WINBIND: Challenge type %u unsupported", digest->code);
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DURLConnectionTest.java20 import com.squareup.okhttp.Challenge;
2814 assertEquals(Arrays.asList(new Challenge("Basic", "protected area")), response.challenges());
2833 assertEquals(Arrays.asList(new Challenge("Bearer", "oauthed")), response.challenges());
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...

Completed in 587 milliseconds