HomeSort by relevance Sort by last modified time
    Searched refs:password (Results 126 - 150 of 792) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium/chrome/browser/chromeos/login/
parallel_authenticator.h 81 // Given a |username| and |password|, this method attempts to authenticate to
110 const std::string& password,
114 // Given a |username| and |password|, this method attempts to
119 const std::string& password);
141 const std::string& password,
163 // Given that we're attempting to auth the user again, with a new password,
216 // Stores a hash of |password|, salted with the ascii of |system_salt_|.
217 std::string HashPassword(const std::string& password);
257 // When the user has changed her password, but gives us the old one, we will
auth_attempt_state.h 24 const std::string& password,
69 const std::string password; member in class:chromeos::AuthAttemptState
dom_login_display.cc 90 const std::string& password) {
92 delegate_->Login(username, password);
enterprise_enrollment_screen.h 28 const std::string& password,
56 const std::string& password,
  /external/chromium/chrome/browser/sync/glue/
password_model_associator.h 42 // * Algorithm to associate password model and sync model.
61 // Delete all password nodes.
84 // Returns the sync id for the given password name, or sync_api::kInvalidId
85 // if the password name is not associated to any sync id.
88 // Associates the given password name with the given sync id.
102 static std::string MakeTag(const webkit_glue::PasswordForm& password);
103 static std::string MakeTag(const sync_pb::PasswordSpecificsData& password);
110 static void CopyPassword(const sync_pb::PasswordSpecificsData& password,
113 static bool MergePasswords(const sync_pb::PasswordSpecificsData& password,
password_change_processor.cc 62 "Server did not create the top-level password node. "
78 "Failed to create password sync node.");
96 "Password node lookup failed.");
114 "Password node lookup failed.");
137 "Password root node lookup failed.");
147 DCHECK(changes[i].specifics.HasExtension(sync_pb::password))
148 << "Password specifics data not present on delete!";
152 const sync_pb::PasswordSpecificsData& password = extra->unencrypted(); local
154 PasswordModelAssociator::CopyPassword(password, &form);
163 "Password node lookup failed.")
173 webkit_glue::PasswordForm password; local
    [all...]
  /external/chromium/chrome/browser/ui/
crypto_module_password_dialog_nss.cc 39 void GotPassword(const char* password);
94 void SlotUnlocker::GotPassword(const char* password) {
99 if (!password) {
100 // User cancelled entering password. Oh well.
108 password);
110 // Incorrect password. Try again.
119 // Correct password (SECSuccess) or too many attempts/other failure
  /external/chromium/chrome/browser/ui/views/
login_view.h 29 // Access the data in the username/password text fields.
35 const std::wstring& password) OVERRIDE;
  /external/chromium/chrome/browser/ui/webui/chromeos/
enterprise_enrollment_ui.h 25 const std::string& password,
  /external/chromium/net/base/
auth.h 54 string16 password; // the password supplied to us for auth. member in class:net::AuthData
cert_database_openssl.cc 64 const string16& password) {
71 const string16& password,
  /external/chromium/net/http/
http_auth_handler_basic.h 41 const string16* password,
http_auth_handler_basic_unittest.cc 21 const char* password; member in struct:net::__anon4476
27 // Empty password
29 // Empty username and empty password.
40 string16 password(ASCIIToUTF16(tests[i].password));
43 int rv = basic->GenerateAuthToken(&username, &password, &request_info,
http_auth_handler_ntlm.cc 33 const string16* password,
40 password,
45 if (!username || !password) {
46 LOG(ERROR) << "Username and password are expected to be non-NULL.";
71 password_ = *password;
http_transaction.h 66 const string16& password,
http_auth_controller.cc 183 const string16* password = NULL; local
186 password = &identity_.password;
191 password,
209 // Don't do preemptive authorization if the URL contains a username/password,
237 identity_.password = entry->password();
370 const string16& password) {
372 DCHECK(identity_.invalid || (username.empty() && password.empty()));
375 // Update the username/password
    [all...]
http_auth_handler.h 56 // When |username| and |password| are NULL, the default credentials for
68 // invoked, but |username| and |password| are only used during the initial
73 const string16* password,
111 // password in the clear.
132 // for username and password to establish credentials.
155 const string16* password,
http_auth_handler_unittest.cc 24 string16 password = ASCIIToUTF16("pass"); local
47 mock_handler.GenerateAuthToken(&username, &password, &request,
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyKeyStoreSpi.java 48 public Key engineGetKey(String alias, char[] password)
68 public void engineSetKeyEntry(String alias, Key key, char[] password,
129 public void engineStore(OutputStream stream, char[] password)
142 public void engineLoad(InputStream stream, char[] password)
  /tools/motodev/src/plugins/certmanager/src/com/motorolamobility/studio/android/certmanager/command/
ChangeKeyStoreTypeHandler.java 58 String password = dialog.getKeystorePassword(); local
63 if (password != null)
65 //user entered some password
66 KeyStoreUtils.changeKeyStoreType(keyStoreFile, password.toCharArray(),
69 keyStore.forceReload(password.toCharArray(), false);
  /external/apache-harmony/x-net/src/test/support/common/java/org/apache/harmony/xnet/tests/support/
MyKeyManagerFactorySpi.java 39 protected void engineInit(KeyStore ks, char[] password)
42 if (password == null) {
43 throw new KeyStoreException("Incorrect password");
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
PKCS5S1ParametersGenerator.java 35 * the derived key function, the ith hash of the password and the salt.
41 digest.update(password, 0, password.length);
55 * Generate a key parameter derived from the password, salt, and iteration
80 * the password, salt, and iteration count we are currently initialised
107 * Generate a key parameter for use with a MAC derived from the password,
  /external/chromium/chrome/browser/ui/login/
login_prompt_ui.cc 36 dict.SetString("password",
132 const std::wstring& password);
170 const std::wstring& password) {
172 delegate_->ShowAutofillData(username, password);
208 string16 password; local
211 !res->GetString("password", &password)) {
214 login_handler_->SetAuth(username, password);
222 const std::wstring& password) {
224 autofill_password_ = WideToUTF8(password);
    [all...]
  /external/chromium/chrome/common/net/gaia/
gaia_authenticator.h 22 // email address associated with the Gaia account can be read; the password is
109 bool Authenticate(const std::string& user_name, const std::string& password,
113 bool Authenticate(const std::string& user_name, const std::string& password);
125 const std::string& password);
138 std::string password; member in struct:gaia::GaiaAuthenticator::AuthResults
164 std::string password; member in struct:gaia::GaiaAuthenticator::AuthParams
171 const std::string& password,
203 // Retrieve password.
204 inline std::string password() const { function in class:gaia::GaiaAuthenticator
206 return auth_results_.password;
    [all...]
  /external/chromium/net/socket_stream/
socket_stream_job.cc 66 const string16& password) {
67 socket_->RestartWithAuth(username, password);

Completed in 1216 milliseconds

1 2 3 4 56 7 8 91011>>