HomeSort by relevance Sort by last modified time
    Searched refs:password (Results 26 - 50 of 1221) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/resources/net_internals/
chromeos_view.css 6 #chromeos-view-password-div,
  /external/chromium_org/chrome/browser/signin/
local_auth_unittest.cc 35 std::string password("Some Password");
36 EXPECT_FALSE(ValidateLocalAuthCredentials(prof, password));
38 SetLocalAuthCredentials(prof, password);
44 // - The plaintext version of the password is not mistakenly stored anywhere.
47 EXPECT_EQ(passhash.find(password), std::string::npos);
52 EXPECT_EQ(decodedhash.find(password), std::string::npos);
54 EXPECT_TRUE(ValidateLocalAuthCredentials(prof, password));
55 EXPECT_FALSE(ValidateLocalAuthCredentials(prof, password + "1"));
57 SetLocalAuthCredentials(prof, password); // makes different sal
    [all...]
  /external/chromium_org/third_party/WebKit/ManualTests/blackberry/
http-auth-challenge.php 8 $username = $password = "aaaa";
10 if ($_SERVER['PHP_AUTH_USER'] == $username && $_SERVER['PHP_AUTH_PW'] == $password){
http-auth-private-mode-changed.php 2 $username = $password = "aaaa";
4 if ($_SERVER['PHP_AUTH_USER'] == $username && $_SERVER['PHP_AUTH_PW'] == $password){
8 echo '3. There should be a dialog for you to input username and password again.<br>';
  /external/lzma/CPP/7zip/
IPassword.h 15 STDMETHOD(CryptoGetTextPassword)(BSTR *password) PURE;
20 STDMETHOD(CryptoGetTextPassword2)(Int32 *passwordIsDefined, BSTR *password) PURE;
  /external/smack/src/org/jivesoftware/smackx/bookmark/
BookmarkedConference.java 34 private String password; field in class:BookmarkedConference
42 String password)
48 this.password = password;
102 * Returns the password to use when joining this conference room. This is an optional
105 * @return the password to use when joining this conference room, null may be returned.
108 return password;
111 protected void setPassword(String password) {
112 this.password = password;
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/examples/
ieee8021x.conf 11 password="password"
  /external/chromium/chrome/browser/resources/options/
password_manager_list.css 7 button.password-button {
21 button.password-button:hover {
26 html[dir='ltr'] button.password-button {
30 html[dir='rtl'] button.password-button {
34 input[type="password"].inactive-password {
49 #saved-passwords-list .password {
54 #saved-passwords-list .password input[type="password"],
55 #saved-passwords-list .password input[type="text"]
    [all...]
  /external/dropbear/
svr-authpasswd.c 25 /* Validates a user password */
35 /* Process a password auth request, sending success or failure messages as
43 char * testcrypt = NULL; /* crypt generated from the user's password sent */
44 unsigned char * password; local
51 /* get the shadow password if possible */
63 /* check for empty password - need to do this again here
64 * since the shadow password may differ to that tested
67 dropbear_log(LOG_WARNING, "user '%s' has blank password, rejected",
73 /* check if client wants to change password */
81 password = buf_getstring(ses.payload, &passwordlen)
    [all...]
  /external/smack/src/org/apache/harmony/javax/security/auth/callback/
PasswordCallback.java 26 * Is used in conjunction with a {@link CallbackHandler} to retrieve a password
81 * Sets the password. The {@link CallbackHandler} that performs the actual
82 * provisioning or input of the password needs to call this method to hand
83 * back the password to the security service that requested it.
85 * @param password
86 * the password. A copy of this is stored, so subsequent changes
89 public void setPassword(char[] password) {
90 if (password == null) {
91 this.inputPassword = password;
93 inputPassword = new char[password.length]
    [all...]
  /libcore/luni/src/main/java/javax/security/auth/callback/
PasswordCallback.java 24 * Used in conjunction with a {@link CallbackHandler} to retrieve a password
78 * Sets the password. The {@link CallbackHandler} that performs the actual
79 * provisioning or input of the password needs to call this method to hand
80 * back the password to the security service that requested it.
82 * @param password
83 * the password. A copy of this is stored, so subsequent changes
86 public void setPassword(char[] password) {
87 if (password == null) {
88 this.inputPassword = password;
90 inputPassword = new char[password.length]
    [all...]
  /external/smack/src/org/jivesoftware/smack/packet/
Authentication.java 32 private String password = null; field in class:Authentication
67 * Returns the plain text password or <tt>null</tt> if the password hasn't
70 * @return the password.
73 return password;
77 * Sets the plain text password.
79 * @param password the password.
81 public void setPassword(String password) {
82 this.password = password
    [all...]
  /external/apache-http/src/org/apache/http/auth/
UsernamePasswordCredentials.java 38 * Username and password {@link Credentials}
51 private final String password; field in class:UsernamePasswordCredentials
54 * The constructor with the username and password combined string argument.
56 * @param usernamePassword the username:password formed string
62 throw new IllegalArgumentException("Username:password string may not be null");
67 this.password = usernamePassword.substring(atColon + 1);
70 this.password = null;
76 * The constructor with the username and password arguments.
79 * @param password the password
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
ChromeHttpAuthHandler.java 58 public void proceed(String username, String password) {
59 nativeSetAuth(mNativeChromeHttpAuthHandler, username, password);
97 public void onAutofillDataAvailable(String username, String password);
113 private void onAutofillDataAvailable(String username, String password) {
115 mAutofillPassword = password;
117 mAutofillObserver.onAutofillDataAvailable(username, password);
126 String username, String password);
  /external/openssh/openbsd-compat/
xcrypt.c 61 xcrypt(const char *password, const char *salt)
67 crypted = md5_crypt(password, salt);
69 crypted = crypt(password, salt);
72 crypted = bigcrypt(password, salt);
74 crypted = crypt(password, salt);
76 crypted = bigcrypt(password, salt);
78 crypted = crypt(password, salt);
85 * Handle shadowed password systems in a cleaner way for portable
  /external/wpa_supplicant_8/src/eap_peer/
eap_otp.c 33 const u8 *pos, *password; local
45 password = eap_get_config_otp(sm, &password_len);
46 if (password)
49 password = eap_get_config_password(sm, &password_len);
53 if (password == NULL) {
54 wpa_printf(MSG_INFO, "EAP-OTP: Password not configured");
70 wpabuf_put_data(resp, password, password_len);
72 password, password_len);
75 wpa_printf(MSG_DEBUG, "EAP-OTP: Forgetting used password");
mschapv2.c 37 const u8 *password, size_t password_len,
64 wpa_hexdump_key(MSG_DEBUG, "MSCHAPV2: password hash",
65 password, password_len);
68 password, nt_response) ||
70 password, peer_challenge, auth_challenge,
75 wpa_hexdump_ascii_key(MSG_DEBUG, "MSCHAPV2: password",
76 password, password_len);
79 password, password_len,
81 generate_authenticator_response(password, password_len,
96 if (hash_nt_password_hash(password, password_hash_hash)
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
screen_locker_tester.h 32 // Injects MockAuthenticate that uses given |user| and |password|.
34 const std::string& password);
36 // Sets the password text.
37 void SetPassword(const std::string& password);
39 // Gets the password text.
42 // Emulates entring a password.
43 void EnterPassword(const std::string& password);
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/module/
LoginModuleUtilsTest.java 39 char[] password = LoginModuleUtils.getPassword(in); local
40 assertTrue(Arrays.equals(PASSWORD_AS_CHARS, password));
44 password = LoginModuleUtils.getPassword(in);
45 assertTrue(Arrays.equals(PASSWORD_AS_CHARS, password));
49 password = LoginModuleUtils.getPassword(in);
50 assertTrue(Arrays.equals(PASSWORD_AS_CHARS, password));
54 password = LoginModuleUtils.getPassword(in);
55 assertTrue(Arrays.equals(PASSWORD_AS_CHARS, password));
59 password = LoginModuleUtils.getPassword(in);
61 assertTrue(Arrays.equals(expectedString.toCharArray(), password)); local
67 char[] password = PASSWORD_AS_STRING.toCharArray(); local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/config/
PKCS12StoreParameter.java 15 public PKCS12StoreParameter(OutputStream out, char[] password)
17 this(out, password, false);
25 public PKCS12StoreParameter(OutputStream out, char[] password, boolean forDEREncoding)
27 this(out, new KeyStore.PasswordProtection(password), forDEREncoding);
  /external/chromium/chrome/browser/ui/login/
login_model.h 15 // Called by the model when a username,password pair has been identified
18 const std::wstring& password) = 0;
  /external/chromium_org/chrome/browser/ui/login/
login_model.h 14 // Called by the model when a username,password pair has been identified
17 const base::string16& password) = 0;
  /external/chromium_org/net/base/
auth.cc 33 const base::string16& password)
35 password_(password) {
42 const base::string16& password) {
44 password_ = password;
  /external/chromium_org/third_party/WebKit/Source/web/
WebPasswordFormData.cpp 49 // Helper to determine which password is the main one, and which is
50 // an old password (e.g on a "make new password" form), if any.
52 HTMLInputElement** password,
56 ASSERT(password);
60 // Single password, easy.
61 *password = fields->passwords[0];
65 // Treat two identical passwords as a single password.
66 *password = fields->passwords[0];
68 // Assume first is old password, second is new (no choice but to guess)
    [all...]
  /frameworks/base/core/java/android/webkit/
HttpAuthHandler.java 60 public void proceed(String username, String password) {

Completed in 730 milliseconds

12 3 4 5 6 7 8 91011>>