HomeSort by relevance Sort by last modified time
    Searched full:authenticate (Results 51 - 75 of 319) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/impl/auth/
BasicScheme.java 130 public Header authenticate( method in class:BasicScheme
142 return authenticate(credentials, charset, isProxy());
154 public static Header authenticate( method in class:BasicScheme
  /external/nist-sip/java/gov/nist/javax/sip/header/
ProxyAuthenticate.java 34 * Proxy Authenticate SIP (HTTP ) header.
116 * get/setURI is deprecated for WWW-Authenticate and Proxy-Authenticate,
  /external/wpa_supplicant_8/src/common/
defs.h 172 * WPA_AUTHENTICATING - Trying to authenticate with a BSS/SSID
175 * to authenticate with and the driver is configured to try to
176 * authenticate with this BSS. This state is used only with drivers
  /external/libnfc-nxp/src/
phFriNfc_MifStdFormat.c 86 * authenticate call.
238 /* Set the authenticate state */
654 /* Authenticate with default key for block 3 is successful,
665 /* Authenticate with default key for block 3 is successful,
751 /* Call read, write or authenticate */
760 authenticate using key B*/
766 /* internal authenticate state = key B */
768 /* Now call authenticate */
    [all...]
  /external/openssh/openbsd-compat/
port-aix.c 118 * Since authenticate() doesn't check AUTH1, and sshd can't sanely support
119 * AUTH1 itself, in such a case authenticate() will allow access without
167 * Do authentication via AIX's authenticate routine. We loop until the
168 * reenter parameter is 0, but normally authenticate is called only once.
170 * Note: this function returns 1 on success, whereas AIX's authenticate()
180 result = authenticate((char *)name, (char *)password, &reenter,
183 debug3("AIX/authenticate result %d, authmsg %.100s", result,
  /external/openssh/
sshconnect1.c 60 * authenticate using the agent.
89 /* Tell the server that we are willing to authenticate using this key. */
118 * The agent failed to authenticate this identifier
202 * Checks if the user has authentication file, and if so, tries to authenticate
219 /* Tell the server that we are willing to authenticate using this key. */
322 * Tries to authenticate the user using combined rhosts or /etc/hosts.equiv
333 /* Tell the server that we are willing to authenticate using this key. */
382 * Tries to authenticate with any string-based challenge/response system.
444 * Tries to authenticate with plain passwd authentication.
669 * Authenticate use
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
SupplicantState.java 69 * Trying to authenticate with a BSS/SSID
72 * to authenticate with and the driver is configured to try to
73 * authenticate with this BSS.
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/
AuthenticatorActivity.java 234 Log.e(TAG, "onAuthenticationResult: failed to authenticate");
293 * Represents an asynchronous task used to authenticate a user against the
303 return NetworkUtilities.authenticate(mUsername, mPassword);
305 Log.e(TAG, "UserLoginTask.doInBackground: failed to authenticate");
  /external/chromium/chrome/browser/chromeos/login/
login_status_consumer.h 28 NETWORK_AUTH_FAILED, // Could not authenticate against Google
parallel_authenticator.h 81 // Given a |username| and |password|, this method attempts to authenticate to
104 // we are asked to authenticate valid HOSTED account creds, we will
115 // authenticate to the cached credentials. This will never contact
208 // if one is present. If someone attempts to authenticate with this
  /external/ganymed-ssh2/examples/
BasicWithHTTPProxy.java 43 /* Authenticate.
  /external/guava/guava/src/com/google/common/net/
HttpHeaders.java 156 /** The HTTP Proxy-Authenticate header field name. */
157 public static final String PROXY_AUTHENTICATE = "Proxy-Authenticate";
174 /** The HTTP WWW-Authenticate header field name. */
175 public static final String WWW_AUTHENTICATE = "WWW-Authenticate";
  /external/kernel-headers/original/linux/nfsd/
export.h 38 #define NFSEXP_NOAUTHNLM 0x0800 /* Don't authenticate NLM requests - just trust */
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
AuthenticationHelper.java 15 * A helper interface that provides useful functionality for clients that need to authenticate
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthResponseMessage.java 42 if ("WWW-Authenticate".equalsIgnoreCase(header.getKey())) {
  /frameworks/base/core/java/android/nfc/tech/
MifareClassic.java 316 * Authenticate a sector with key A.
332 * @param sectorIndex index of sector to authenticate, starting from 0
339 return authenticate(sectorIndex, key, true);
343 * Authenticate a sector with key B.
359 * @param sectorIndex index of sector to authenticate, starting from 0
366 return authenticate(sectorIndex, key, false);
369 private boolean authenticate(int sector, byte[] key, boolean keyA) throws IOException { method in class:MifareClassic
383 // Authenticate command takes a block address. Authenticating a block
384 // of a sector will authenticate the entire sector.
  /frameworks/base/docs/html/guide/topics/connectivity/nfc/
index.jd 11 and have cryptographic hardware to authenticate access to a sector. The most sophisticated tags
  /frameworks/support/volley/src/com/android/volley/toolbox/
AndroidAuthenticator.java 40 * @param account Account to authenticate as
  /packages/apps/Email/src/com/android/email/mail/store/
ServiceStore.java 50 * @throws MessagingException if we can't authenticate the account
  /external/chromium/net/http/
http_auth.cc 132 return "Proxy-Authenticate";
134 return "WWW-Authenticate";
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
web_services.py 58 Process a request to authenticate a client. We assume that the username
66 def authenticate(self): member in class:BaseWebServiceHandler
109 class Authenticate(BaseWebServiceHandler):
119 self.authenticate()
392 [('/auth', Authenticate),
  /external/ppp/pppd/
auth.c 171 /* Hook for a plugin to say whether we can possibly authenticate any peer */
185 /* Hook for a plugin to say if we can possibly authenticate a peer using CHAP */
192 refuses to authenticate. */
285 "Don't require peer to authenticate", OPT_PRIOSUB | OPT_PRIV,
355 "Don't agree to authenticate to peer with EAP", 1 },
699 * Proceed to the Dead, Authenticate or Network phase as appropriate.
727 * We wanted the peer to authenticate itself, and it refused:
736 warn("peer refused to authenticate: terminating link");
737 lcp_close(unit, "peer refused to authenticate");
792 * If the peer had to authenticate, run the auth-up script now
    [all...]
pppd.8 38 addresses for each end of the link. Pppd can also authenticate the
77 Require the peer to authenticate itself before allowing network
680 Do not require the peer to authenticate itself. This option is
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
UrlOpener.java 78 * login/password and tries to authenticate into proxy server and/or URL.
150 // authenticate a proxy
211 // in case there is cache for this Realm, use it to authenticate
  /external/apache-http/src/org/apache/http/client/protocol/
RequestTargetAuthentication.java 96 request.addHeader(authScheme.authenticate(creds, request));

Completed in 1040 milliseconds

1 23 4 5 6 7 8 91011>>