/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
D | Challenge.java | 21 public final class Challenge { class 25 public Challenge(String scheme, String realm) { in Challenge() method in Challenge 41 return o instanceof Challenge in equals() 42 && equal(scheme, ((Challenge) o).scheme) in equals() 43 && equal(realm, ((Challenge) o).realm); in equals()
|
D | Response.java | 188 public List<Challenge> challenges() { in challenges()
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | eap_testing.txt | 142 - EAP-MD5-Challenge 148 - EAP-PEAPv0 / MD5-Challenge 150 - EAP-TTLS / EAP-MD5-Challenge 180 - EAP-TTLS / EAP-MD5-Challenge (using FreeRADIUS as inner auth srv) 185 - EAP-MD5-Challenge 188 - EAP-PEAP / MD5-Challenge 192 - EAP-MD5-Challenge 207 - EAP-TTLS / EAP-MD5-Challenge 212 - EAP-MD5-Challenge 219 - EAP-PEAPv0 / MD5-Challenge [all …]
|
D | README | 63 * EAP-PEAP/MD5-Challenge (both PEAPv0 and PEAPv1) 64 * EAP-TTLS/EAP-MD5-Challenge 86 * EAP-MD5-Challenge 572 3) EAP-TTLS/EAP-MD5-Challenge configuration with anonymous identity for the 742 CTRL-REQ-OTP-2:Challenge 1235663 needed for SSID foobar
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
D | AuthenticatorAdapter.java | 19 import com.squareup.okhttp.Challenge; 38 List<Challenge> challenges = response.challenges(); in authenticate() 42 Challenge challenge = challenges.get(i); in authenticate() 60 List<Challenge> challenges = response.challenges(); in authenticateProxy() 64 Challenge challenge = challenges.get(i); in authenticateProxy()
|
D | OkHeaders.java | 4 import com.squareup.okhttp.Challenge; 234 public static List<Challenge> parseChallenges(Headers responseHeaders, String challengeHeader) { in parseChallenges() 240 List<Challenge> result = new ArrayList<>(); in parseChallenges() 270 result.add(new Challenge(scheme, realm)); in parseChallenges()
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
D | Challenge.java | 41 public class Challenge extends SIPObject { class 72 public Challenge() { in Challenge() method in Challenge 252 Challenge retval = (Challenge) super.clone(); in clone()
|
D | AuthenticationHeader.java | 146 public void setChallenge(Challenge challenge) { in setChallenge()
|
/external/ppp/pppd/ |
D | chap_ms.c | 539 char *username, u_char Challenge[8]) in ChallengeHash() 558 BCOPY(sha1Hash, Challenge, 8); in ChallengeHash() 626 u_char Challenge[8]; in ChapMS2_NT() local 628 ChallengeHash(PeerChallenge, rchallenge, username, Challenge); in ChapMS2_NT() 634 ChallengeResponse(Challenge, PasswordHash, NTResponse); in ChapMS2_NT() 685 u_char Challenge[8]; in GenerateAuthenticatorResponse() local 693 ChallengeHash(PeerChallenge, rchallenge, username, Challenge); in GenerateAuthenticatorResponse() 697 SHA1_Update(&sha1Context, Challenge, sizeof(Challenge)); in GenerateAuthenticatorResponse()
|
/external/jetty/src/java/org/eclipse/jetty/server/ |
D | Authentication.java | 105 public interface Challenge extends ResponseSent interface 143 public final static Authentication SEND_CONTINUE = new Authentication.Challenge(){@Override
|
/external/opencv3/doc/tutorials/video/background_subtraction/ |
D | background_subtraction.markdown | 23 coming from the publicly available data set [Background Models Challenge 169 - The video file Video_001.avi is part of the [Background Models Challenge 181 - The sequence of images used in this example is part of the [Background Models Challenge 206 data. If you decide to use the [Background Models Challenge (BMC)](http://bmc.univ-bpclermont.fr/), 214 - [Background Models Challenge (BMC) website](http://bmc.univ-bpclermont.fr/)
|
/external/ppp/pppd/plugins/ |
D | winbind.c | 603 u_char Challenge[8]; in winbind_chap_verify() local 611 user, Challenge); in winbind_chap_verify() 619 Challenge, 8, in winbind_chap_verify()
|
/external/ppp/pppd/plugins/radius/etc/ |
D | dictionary.microsoft | 22 ATTRIBUTE MS-CHAP-Challenge 11 string Microsoft 47 #ATTRIBUTE MS-ARAP-Challenge 33 string Microsoft
|
D | dictionary.compat | 16 ATTRIBUTE Challenge-State 24 string
|
D | dictionary | 85 ATTRIBUTE Chap-Challenge 60 string
|
/external/tcpdump/tests/ |
D | radius-v.out | 16 Access-Challenge (11), id: 0x05, Authenticator: f050649184625d36f14c9075b7a48b83
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/ |
D | rfc4210.py | 148 class Challenge(univ.Sequence): class 408 componentType = Challenge()
|
/external/autotest/client/site_tests/graphics_SanAngeles/src/ |
D | README.txt | 27 OpenGL ES Coding Challenge held in 2004-2005.
|
/external/opencv3/doc/py_tutorials/py_setup/py_intro/ |
D | py_intro.markdown | 9 OpenCV was used on Stanley, the vehicle that won the 2005 DARPA Grand Challenge. Later, its active
|
/external/wpa_supplicant_8/wpa_supplicant/doc/docbook/ |
D | wpa_supplicant.sgml | 170 <para>EAP-PEAP/MD5-Challenge (both PEAPv0 and PEAPv1)</para> 174 <para>EAP-TTLS/EAP-MD5-Challenge</para> 210 <listitem><para>EAP-MD5-Challenge </para></listitem>
|
D | wpa_supplicant.conf.sgml | 98 <para>EAP-TTLS/EAP-MD5-Challenge configuration with anonymous
|
D | wpa_cli.sgml | 100 CTRL-REQ-OTP-2:Challenge 1235663 needed for SSID foobar
|
/external/wpa_supplicant_8/hostapd/ |
D | README | 197 EAP/MD5-Challenge with Windows XP.
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
D | URLConnectionTest.java | 2880 assertEquals(Arrays.asList(new Challenge("Basic", "protected area")), response.challenges()); 2899 assertEquals(Arrays.asList(new Challenge("Bearer", "oauthed")), response.challenges());
|
/external/okhttp/ |
D | CHANGELOG.md | 449 whichever followup request is appropriate. The `Challenge` class is now a
|