/packages/apps/Settings/src/com/android/settings/ |
ChooseLockPassword.java | 289 * @param password the raw password the user typed in 290 * @return error message to show to user or null if password is OK 292 private String validatePassword(String password) { 293 if (password.length() < mPasswordMinLength) { 298 if (password.length() > mPasswordMaxLength) { 309 for (int i = 0; i < password.length(); i++) { 310 char c = password.charAt(i); 372 if(mLockPatternUtils.checkPasswordHistory(password)) { 444 * Update the hint based on current Stage and length of password entr 447 String password = mPasswordEntry.getText().toString(); local [all...] |
/frameworks/base/core/java/android/os/storage/ |
IMountService.java | 613 public int decryptStorage(String password) throws RemoteException { 619 _data.writeString(password); 630 public int encryptStorage(String password) throws RemoteException { 636 _data.writeString(password); 647 public int changeEncryptionPassword(String password) throws RemoteException { 653 _data.writeString(password); 665 public int verifyEncryptionPassword(String password) throws RemoteException { 671 _data.writeString(password); 1099 String password = data.readString(); local 1107 String password = data.readString(); local 1115 String password = data.readString(); local [all...] |
/external/chromium/chrome/browser/sync/util/ |
user_settings.cc | 351 const string& password) { 352 // Save one-way hashed password: 359 md5.AddData(password.data(), password.size()); 391 const string& password) { 418 md5.AddData(password.data(), password.size());
|
/external/openssh/ |
sshconnect1.c | 450 char *password; local 452 debug("Doing password authentication."); 454 logit("WARNING: Encryption is disabled! Password will be transmitted in clear text."); 458 password = read_passphrase(prompt, 0); 460 ssh_put_password(password); 461 memset(password, 0, strlen(password)); 462 xfree(password); 688 * needed (the user has no password). Otherwise the server responds 737 /* Try password authentication if the server supports it. * [all...] |
/packages/apps/CertInstaller/src/com/android/certinstaller/ |
CertInstaller.java | 291 void extractPkcs12InBackground(final String password) { 297 return mCredentials.extractPkcs12(password); 341 String password = mView.getText(R.id.credential_password); 342 mNextAction = new Pkcs12ExtractAction(password); 449 Pkcs12ExtractAction(String password) { 450 mPassword = password;
|
/tools/motodev/src/plugins/certmanager/src/com/motorolamobility/studio/android/certmanager/ui/model/ |
EntryNode.java | 225 public Key getKey(String password) throws UnrecoverableKeyException, KeyStoreException,
232 key = keyStore.getKey(alias, password.toCharArray());
246 public PrivateKey getPrivateKey(String password) throws UnrecoverableKeyException,
250 Key key = this.getKey(password);
260 public Entry getKeyEntry(String password) throws KeyStoreException, NoSuchAlgorithmException,
267 key = keyStore.getEntry(alias, new KeyStore.PasswordProtection(password.toCharArray()));
383 //saved password
390 //non saved password
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
KeyStoreSpiTest.java | 165 public void engineLoad(InputStream stream, char[] password) { 167 assertNull(password);
|
/external/chromium/chrome/browser/ |
accessibility_events.h | 47 // The name of the control, like "OK" or "Password". 190 bool password); 204 bool password() const { return password_; } function in class:AccessibilityTextBoxInfo
|
/external/chromium/chrome/browser/chromeos/login/ |
enterprise_enrollment_view.cc | 147 const std::string& password, 150 controller_->Authenticate(user, password, captcha, access_code);
|
wizard_controller.h | 175 const std::string& password); 213 void Login(const std::string& username, const std::string& password);
|
/external/chromium/chrome/browser/ui/login/ |
login_prompt_gtk.cc | 51 const std::wstring& password) { 60 WideToUTF8(password).c_str());
|
/external/chromium/chrome/common/net/gaia/ |
gaia_auth_fetcher.h | 42 // needed to complete authentication, the user provided the right password. 56 const std::string& password, 155 const std::string& password,
|
/external/chromium/crypto/ |
symmetric_key_mac.cc | 84 const std::string& password, 112 params.Passphrase = StringToData(password);
|
symmetric_key_unittest.cc | 53 crypto::SymmetricKey::HMAC_SHA1, "password", "somesalt", 1024, 160)); 70 const char* password; member in struct:PBKDF2TestVector 95 test_data.password, test_data.salt, 112 "password", 120 "password", 128 "password", 138 "password", 150 "password", 158 "password", 166 "password", [all...] |
/external/chromium/net/http/ |
http_auth_sspi_win.h | 142 // obtained using |*username| and |*password|. If |username| and |password| 146 const string16* password, 156 int OnFirstRound(const string16* username, const string16* password);
|
/external/chromium/third_party/libjingle/source/talk/base/ |
socketadapters.h | 119 const std::string& username, const CryptString& password); 178 const std::string& username, const CryptString& password);
|
/external/chromium/third_party/libjingle/source/talk/p2p/client/ |
basicportallocator.h | 174 std::string password; member in struct:cricket::PortConfiguration 189 const std::string& password,
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/ |
regress-85721.js | 80 str='<sql:connection id="conn1"> <sql:url>www.m.com</sql:url> <sql:driver>drive.class</sql:driver>\n<sql:userId>foo</sql:userId> <sql:password>goo</sql:password> </sql:connection>'; 81 re = /<sql:connection id="([^\r\n]*?)">\s*<sql:url>\s*([^\r\n]*?)\s*<\/sql:url>\s*<sql:driver>\s*([^\r\n]*?)\s*<\/sql:driver>\s*(\s*<sql:userId>\s*([^\r\n]*?)\s*<\/sql:userId>\s*)?\s*(\s*<sql:password>\s*([^\r\n]*?)\s*<\/sql:password>\s*)?\s*<\/sql:connection>/; 82 expect = Array("<sql:connection id=\"conn1\"> <sql:url>www.m.com</sql:url> <sql:driver>drive.class</sql:driver>\n<sql:userId>foo</sql:userId> <sql:password>goo</sql:password> </sql:connection>","conn1","www.m.com","drive.class","<sql:userId>foo</sql:userId> ","foo","<sql:password>goo</sql:password> ","goo");
|
/external/webkit/Tools/DumpRenderTree/mac/ |
ResourceLoadDelegate.mm | 188 const char* password = gLayoutTestController->authenticationPassword().c_str(); 189 NSString *nsPassword = [NSString stringWithFormat:@"%s", password ? password : ""]; 194 [[challenge sender] useCredential:[NSURLCredential credentialWithUser:nsUser password:nsPassword persistence:NSURLCredentialPersistenceForSession]
|
/external/wpa_supplicant_6/wpa_supplicant/src/eap_server/ |
eap_md5.c | 111 if (sm->user == NULL || sm->user->password == NULL || 113 wpa_printf(MSG_INFO, "EAP-MD5: Plaintext password not " 127 chap_md5(id, sm->user->password, sm->user->password_len,
|
/external/wpa_supplicant_8/src/eap_server/ |
eap_server_md5.c | 106 if (sm->user == NULL || sm->user->password == NULL || 108 wpa_printf(MSG_INFO, "EAP-MD5: Plaintext password not " 122 if (chap_md5(id, sm->user->password, sm->user->password_len,
|
/frameworks/base/core/java/android/net/http/ |
HttpAuthHeader.java | 55 * new username and password. 61 * password to use. 106 * Password string we get from the user. 151 * @return The password string. 158 * Sets the password string. 160 public void setPassword(String password) { 161 mPassword = password;
|
/packages/apps/Email/src/com/android/email/activity/setup/ |
AccountSetupExchange.java | 41 * Password 56 * finish() (pop to previous, to re-enter username & password) 137 * Username or password not entered yet 149 // If we've got a username and password and we're NOT editing, try autodiscover 151 String password = account.mHostAuthRecv.mPassword; local 152 if (username != null && password != null) {
|
/packages/apps/Email/tests/src/com/android/email/activity/setup/ |
AccountSetupExchangeTests.java | 68 Intent i = getTestIntent("eas://user:password@server.com"); 76 Intent i = getTestIntent("eas://user:password@server.com"); 89 Intent i = getTestIntent("eas://:password@server.com"); 96 * No password is not OK - not enabled 139 // Clear the password - should disable 150 * Check password field for a given password. Should be called in UI thread. Confirms that 151 * the password has not been trimmed. 153 * @param password the password to test wit [all...] |
/tools/motodev/src/plugins/certmanager/src/com/motorolamobility/studio/android/certmanager/ui/wizards/ |
CreateKeyWizardPage.java | 258 public void setKeyStorePass(String password)
260 this.keyStorePass = password;
|