Searched refs:password (Results 101 - 125 of 636) sorted by relevance

1234567891011>>

/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DTestHelper_Driver4.java72 static String passwordProperty = "password";
82 * Check for user and password, except for datasource =
83 * data1 which is set up not to require a user/password
93 String password = (String) info.get(passwordProperty);
94 if (user == null || password == null) {
96 "Userid and/or password not supplied");
99 || !password.equals(validpassword)) {
101 "Userid and/or password not valid");
/external/chromium/chrome/browser/ui/webui/chromeos/login/
H A Dlogin_ui.cc87 std::string password; local
91 args->GetString(1, &password);
92 delegate_->Login(username, password);
/external/chromium/crypto/
H A Dsymmetric_key_openssl.cc44 const std::string& password,
56 int rv = PKCS5_PBKDF2_HMAC_SHA1(password.data(), password.length(),
43 DeriveKeyFromPassword(Algorithm algorithm, const std::string& password, const std::string& salt, size_t iterations, size_t key_size_in_bits) argument
/external/chromium/net/http/
H A Dhttp_auth_cache.h24 // - the last identity used (username/password)
69 // |password| - login information for the realm.
78 const string16& password,
82 // if one exists AND if the cached identity matches (|username|, |password|).
87 // |password| - condition to match.
93 const string16& password);
139 // The login password.
140 const string16 password() const { function in class:net::HttpAuthCache::Entry
H A Dhttp_auth_handler.cc66 const string16* password,
72 DCHECK((username == NULL) == (password == NULL));
78 int rv = GenerateAuthTokenImpl(username, password, request,
65 GenerateAuthToken(const string16* username, const string16* password, const HttpRequestInfo* request, CompletionCallback* callback, std::string* auth_token) argument
H A Dhttp_auth_handler_basic_unittest.cc21 const char* password; member in struct:net::__anon2921
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,
H A Dhttp_auth_handler_ntlm.cc33 const string16* password,
40 password,
45 if (!username || !password) {
46 LOG(ERROR) << "Username and password are expected to be non-NULL.";
71 password_ = *password;
31 GenerateAuthTokenImpl( const string16* username, const string16* password, const HttpRequestInfo* request, CompletionCallback* callback, std::string* auth_token) argument
H A Dhttp_auth_controller.cc183 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
369 ResetAuth(const string16& username, const string16& password) argument
[all...]
H A Dhttp_auth_handler.h56 // 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,
H A Dhttp_auth_handler_unittest.cc24 string16 password = ASCIIToUTF16("pass"); local
47 mock_handler.GenerateAuthToken(&username, &password, &request,
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitsoupauthdialog.c106 char *password; member in struct:_WebKitAuthData
113 g_free(authData->password);
120 /* Anything but 401 and 5xx means the password was accepted */
122 soup_auth_save_password(authData->auth, authData->username, authData->password);
139 authData->password = g_strdup(gtk_entry_get_text(GTK_ENTRY(authData->passwordEntry)));
141 soup_auth_authenticate(authData->auth, authData->username, authData->password);
195 static void show_auth_dialog(WebKitAuthData* authData, const char* login, const char* password) argument
261 description = g_strdup_printf(_("A username and password are being requested by the site %s"), uri->host);
307 password, NULL);
315 checkButton = gtk_check_button_new_with_mnemonic(_("_Remember password"));
335 const char *login, *password; local
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Dscreen_observer.h46 // Notify about new user names and password. It is used to autologin
49 const std::string& password) = 0;
H A Dauth_attempt_state.h24 const std::string& password,
69 const std::string password; member in class:chromeos::AuthAttemptState
H A Ddom_login_display.cc90 const std::string& password) {
92 delegate_->Login(username, password);
89 Login(const std::string& username, const std::string& password) argument
/external/chromium/chrome/browser/password_manager/
H A Die7_password.cc17 // Structures that IE7/IE8 use to store a username/password.
31 // the username, and one for the password.
39 FILETIME time_stamp; // Timestamp when the password got added.
48 // is the username, the second one if the password.
57 std::wstring* password) {
81 *password = reinterpret_cast<const wchar_t*>(offset_to_data +
112 std::wstring* username, std::wstring* password) {
134 GetUserPassFromData(decrypted_data, username, password);
55 GetUserPassFromData(const std::vector<unsigned char>& data, std::wstring* username, std::wstring* password) argument
110 DecryptPassword(const std::wstring& url, const std::vector<unsigned char>& data, std::wstring* username, std::wstring* password) argument
/external/chromium/chrome/browser/sync/glue/
H A Dpassword_model_associator.h42 // * 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,
H A Dpassword_change_processor.cc62 "Server did not create the top-level password node. "
78 "Failed to create password sync node.");
147 DCHECK(changes[i].specifics.HasExtension(sync_pb::password))
152 const sync_pb::PasswordSpecificsData& password = extra->unencrypted(); local
154 PasswordModelAssociator::CopyPassword(password, &form);
173 webkit_glue::PasswordForm password; local
174 PasswordModelAssociator::CopyPassword(password_data, &password);
177 std::string tag(PasswordModelAssociator::MakeTag(password));
179 new_passwords_.push_back(password);
183 updated_passwords_.push_back(password);
[all...]
/external/chromium/chrome/browser/ui/
H A Dcrypto_module_password_dialog_nss.cc39 void GotPassword(const char* password);
94 void SlotUnlocker::GotPassword(const char* password) { argument
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/net/ftp/
H A Dftp_transaction.h47 const string16& password,
/external/apache-harmony/x-net/src/test/support/common/java/org/apache/harmony/xnet/tests/support/
H A DMyKeyManagerFactorySpi.java39 protected void engineInit(KeyStore ks, char[] password) argument
42 if (password == null) {
43 throw new KeyStoreException("Incorrect password");
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
H A DPKCS5S1ParametersGenerator.java35 * 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/
H A Dlogin_prompt_ui.cc36 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);
169 OnAutofillDataAvailable(const std::wstring& username, const std::wstring& password) argument
221 ShowAutofillData(const std::wstring& username, const std::wstring& password) argument
[all...]
/external/chromium/chrome/common/net/gaia/
H A Dgaia_authenticator.h22 // 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/base/
H A Dcert_database_openssl.cc64 const string16& password) {
71 const string16& password,
62 ImportFromPKCS12(CryptoModule* module, const std::string& data, const string16& password) argument
70 ExportToPKCS12(const CertificateList& certs, const string16& password, std::string* output) const argument
/external/chromium/net/socket_stream/
H A Dsocket_stream_job.cc66 const string16& password) {
67 socket_->RestartWithAuth(username, password);
65 RestartWithAuth(const string16& username, const string16& password) argument

Completed in 361 milliseconds

1234567891011>>