Searched refs:password (Results 201 - 225 of 636) sorted by relevance

1234567891011>>

/external/chromium/googleurl/src/
H A Dgurl.h201 // and port from a URL. Equivalent to clearing any username and password,
204 // invalid GURL. If the URL has neither username nor password, this
247 std::string password() const { function in class:GURL
248 return ComponentString(parsed_.password);
280 return parsed_.password.len >= 0;
/external/openssh/
H A Dsshconnect2.c351 {"password",
868 char *password; local
878 snprintf(prompt, sizeof(prompt), "%.30s@%.128s's password: ",
880 password = read_passphrase(prompt, 0);
886 packet_put_cstring(password);
887 memset(password, 0, strlen(password));
888 xfree(password);
906 char *info, *lang, *password = NULL, *retype = NULL; local
929 "Enter %.30s@%.128s's old password
970 pw_encrypt(const char *password, const char *crypt_scheme, const char *salt) argument
987 char prompt[256], *password, *crypted; local
[all...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
H A DPEMDecoder.java74 private static byte[] generateKeyFromPasswordSaltWithMD5(byte[] password, byte[] salt, int keyLen) argument
87 md5.update(password, 0, password.length);
113 throw new PEMDecryptException("Decrypted PEM has wrong padding, did you specify the correct password?");
118 throw new PEMDecryptException("Decrypted PEM has wrong padding, did you specify the correct password?");
319 public static Object decode(char[] pem, String password) throws IOException argument
325 if (password == null)
326 throw new IOException("PEM is encrypted, but no password was specified");
328 decryptPEM(ps, StringEncoder.GetBytes(password));
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebURLAuthenticationChallenge.idl206 -(id)initWithUser:(NSString *)user password:(NSString *)password persistence:(NSURLCredentialPersistence)persistence
208 HRESULT initWithUser([in] BSTR user, [in] BSTR password, [in] WebURLCredentialPersistence persistence);
211 -(NSString *)password
213 HRESULT password([out, retval] BSTR* password);
/external/chromium/chrome/browser/chromeos/login/
H A Daccount_screen.cc163 const std::string& password) {
164 delegate()->GetObserver(this)->OnSetUserNamePassword(username, password);
172 // password.
162 OnUserCreated(const std::string& username, const std::string& password) argument
H A Dexisting_user_controller.h66 const std::string& password) OVERRIDE;
84 const std::string& password,
H A Dscreen_locker.h74 const std::string& password,
87 // Authenticates the user with given |password| and authenticator.
88 void Authenticate(const string16& password);
176 // A view that accepts password.
229 // password. True when chrome is in BWSI or auto login mode.
H A Daccount_screen.h39 const std::string& password);
H A Ddom_login_display.h67 const std::string& password) OVERRIDE;
H A Denterprise_enrollment_view.h54 const std::string& password,
H A Dlogin_status_consumer.h104 // |username|/|password|, returning |credentials|. If
109 const std::string& password,
114 // The same password didn't work both online and offline.
H A Dlogin_utils.h53 const std::string& password,
/external/chromium/chrome/browser/ui/views/
H A Dlogin_view.cc53 // Add the column set for the user name and password fields and labels.
106 const std::wstring& password) {
109 password_field_->SetText(password);
105 OnAutofillDataAvailable(const std::wstring& username, const std::wstring& password) argument
/external/chromium/net/url_request/
H A Durl_request_http_job.h64 const string16& password);
83 const string16& password);
/external/chromium/third_party/libjingle/source/talk/base/
H A Dbasicpacketsocketfactory.cc113 socket, proxy_info.address, proxy_info.username, proxy_info.password);
117 proxy_info.username, proxy_info.password);
H A Dsslsocketfactory.cc145 proxy.username, proxy.password);
150 proxy.username, proxy.password);
/external/webkit/Tools/Scripts/webkitpy/common/net/
H A Dcredentials_unittest.py65 "desc"<blob>="Web form password"
78 password: "SECRETSAUCE"
109 expected_stderr = "Reading Keychain for example.com account and password. Click \"Allow\" to continue...\n"
112 security_args = ["/usr/bin/security", "find-internet-password", "-g", "-s", "example.com"]
128 username, password = credentials._credentials_from_environment()
130 self.assertEquals(password, "bar")
/external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
H A Deap_ttls.c249 u8 *password = dpos; local
252 password[password_len - 1] == '\0') {
257 password, password_len);
258 parse->user_password = password;
652 if (!sm->user || !sm->user->password || sm->user->password_hash ||
655 "password configured");
661 os_memcmp(sm->user->password, user_password, user_password_len) !=
663 wpa_printf(MSG_DEBUG, "EAP-TTLS/PAP: Invalid user password");
668 wpa_printf(MSG_DEBUG, "EAP-TTLS/PAP: Correct user password");
678 const u8 *password,
674 eap_ttls_process_phase2_chap(struct eap_sm *sm, struct eap_ttls_data *data, const u8 *challenge, size_t challenge_len, const u8 *password, size_t password_len) argument
[all...]
/external/chromium/net/http/
H A Dhttp_auth_handler_ntlm_portable.cc259 // LM_Hash computes the LM hash of the given password.
261 // param password
262 // unicode password.
268 static void LM_Hash(const string16& password, uint8* hash) { argument
271 // Convert password to OEM character set. We'll just use the native
273 std::string passbuf = base::SysWideToNativeMB(UTF16ToWide(password));
282 // Use password keys to hash LM magic string twice.
287 // NTLM_Hash computes the NTLM hash of the given password.
289 // param password
290 // null-terminated unicode password
293 NTLM_Hash(const string16& password, uint8* hash) argument
454 GenerateType3Msg(const string16& domain, const string16& username, const string16& password, const std::string& hostname, const void* rand_8_bytes, const void* in_buf, uint32 in_len, void** out_buf, uint32* out_len) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJDKPKCS12KeyStore.java458 char[] password)
507 char[] password,
567 char[] password,
574 PBEKeySpec pbeSpec = new PBEKeySpec(password);
608 char[] password)
611 PBEKeySpec pbeSpec = new PBEKeySpec(password);
639 char[] password,
646 PBEKeySpec pbeSpec = new PBEKeySpec(password);
671 char[] password)
679 if (password
456 engineGetKey( String alias, char[] password) argument
504 engineSetKeyEntry( String alias, Key key, char[] password, Certificate[] chain) argument
564 unwrapKey( AlgorithmIdentifier algId, byte[] data, char[] password, boolean wrongPKCS12Zero) argument
604 wrapKey( String algorithm, Key key, PKCS12PBEParams pbeParams, char[] password) argument
636 cryptData( boolean forEncryption, AlgorithmIdentifier algId, char[] password, boolean wrongPKCS12Zero, byte[] data) argument
669 engineLoad( InputStream stream, char[] password) argument
1146 engineStore(OutputStream stream, char[] password) argument
1152 doStore(OutputStream stream, char[] password, boolean useDEREncoding) argument
1543 calculatePbeMac( ASN1ObjectIdentifier oid, byte[] salt, int itCount, char[] password, boolean wrongPkcs12Zero, byte[] data) argument
[all...]
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DMyKeyStore.java62 public Key engineGetKey(String alias, char[] password) argument
91 public void engineSetKeyEntry(String alias, Key key, char[] password, argument
177 public void engineStore(OutputStream stream, char[] password) argument
200 public void engineLoad(InputStream stream, char[] password) argument
/external/chromium/chrome/browser/sync/
H A Dprofile_sync_service_mock.h29 const std::string& password,
/external/chromium/chrome/browser/sync/util/
H A Dnigori.cc74 const std::string& password) {
92 password, raw_user_salt, kUserIterations, kDerivedKeySizeInBits));
97 password, raw_user_salt, kEncryptionIterations, kDerivedKeySizeInBits));
102 SymmetricKey::HMAC_SHA1, password, raw_user_salt, kSigningIterations,
72 InitByDerivation(const std::string& hostname, const std::string& username, const std::string& password) argument
H A Dnigori.h34 // Initialize the client with the given |hostname|, |username| and |password|.
37 const std::string& password);
46 // |username| and |password| are kept constant, a given |type| and |name| pair
/external/chromium/chrome/browser/ui/webui/chromeos/login/
H A Dlogin_ui.h43 // Sign in using |username| and |password| specified.
46 const std::string& password) = 0;

Completed in 530 milliseconds

1234567891011>>