/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_pkcs.h | 70 /* ===> PKCS #5 -- Password Based Cryptography <=== */ 74 int pkcs_5_alg1(const unsigned char *password, unsigned long password_len, 80 int pkcs_5_alg2(const unsigned char *password, unsigned long password_len,
|
/external/ganymed-ssh2/examples/ |
Basic.java | 20 String password = "joespass"; local 34 * "Authentication method password not supported by the server at this stage." 38 boolean isAuthenticated = conn.authenticateWithPassword(username, password);
|
BasicWithHTTPProxy.java | 21 String password = "joespass"; local 45 * "Authentication method password not supported by the server at this stage." 49 boolean isAuthenticated = conn.authenticateWithPassword(username, password);
|
SingleThreadStdoutStderr.java | 18 String password = "joespass"; local 32 boolean isAuthenticated = conn.authenticateWithPassword(username, password);
|
StdoutAndStderr.java | 20 String password = "joespass"; local 34 boolean isAuthenticated = conn.authenticateWithPassword(username, password);
|
UsingKnownHosts.java | 24 String password = "joespass"; local 45 boolean isAuthenticated = conn.authenticateWithPassword(username, password);
|
/external/webkit/Source/JavaScriptCore/wtf/url/api/ |
ParsedURL.cpp | 53 String ParsedURL::password() const function in class:WTF::ParsedURL 55 return segment(m_segments.password);
|
/external/webkit/Source/WebCore/platform/network/ |
Credential.h | 56 Credential(const String& user, const String& password, CredentialPersistence); 65 const String& password() const;
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
IccCard.java | 135 * @param password needed to change the ICC pin state, aka. Pin1 142 String password, Message onComplete); 149 * @param password needed to change the ICC fdn enable, aka Pin2 156 String password, Message onComplete); 159 * Change the ICC password used in ICC pin lock 162 * @param oldPassword is the old password 163 * @param newPassword is the new password 173 * Change the ICC password used in ICC fdn enable 176 * @param oldPassword is the old password 177 * @param newPassword is the new password [all...] |
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/ |
MyKeyManagerFactorySpi.java | 38 protected void engineInit(KeyStore ks, char[] password) 41 if (password == null) { 42 throw new KeyStoreException("Incorrect password");
|
/packages/apps/Email/src/com/android/email/mail/store/ |
ServiceStore.java | 70 public Bundle autoDiscover(Context context, String username, String password) { 72 return getService().autoDiscover(username, password);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/ |
PKCS12ParametersGenerator.java | 107 if ((password != null) && (password.length != 0)) 109 P = new byte[v * ((password.length + v - 1) / v)]; 113 P[i] = password[i % password.length]; 166 * Generate a key parameter derived from the password, salt, and iteration 184 * the password, salt, and iteration count we are currently initialised 206 * Generate a key parameter for use with a MAC derived from the password,
|
/external/chromium/chrome/browser/chromeos/login/ |
google_authenticator.h | 42 // Given a |username| and |password|, this method attempts to authenticate to 57 const std::string& password, 61 // Given a |username| and |password|, this method attempts to 66 const std::string& password); 102 const std::string& password, 125 // Stores a hash of |password|, salted with the ascii of |system_salt_|. 126 std::string HashPassword(const std::string& password); 133 void PrepareClientLoginAttempt(const std::string& password, 167 // needed to complete authentication, the user provided the right password.
|
/external/chromium/chrome/browser/remoting/ |
setup_flow_login_step.cc | 48 std::string username, password, captcha, access_code; local 52 !result->GetString("pass", &password) || 59 OnUserSubmittedAuth(username, password, captcha, access_code); 69 const std::string& password, 83 remoting_password = password;
|
/external/chromium/googleurl/src/ |
url_canon_stdurl.cc | 50 // Authority (username, password, host, port) 52 if (parsed.username.is_valid() || parsed.password.is_valid() || 64 source.password, parsed.password, 67 &new_parsed->password); 86 new_parsed->password.reset();
|
url_canon_etc.cc | 168 // The username and password components reference ranges in the corresponding 176 const url_parse::Component& password, 180 if (username.len <= 0 && password.len <= 0) { 196 // When there is a password, we need the separator. Note that we strip 198 if (password.len > 0) { 201 AppendStringOfType(&password_spec[password.begin], password.len, 338 const url_parse::Component& password, 343 username_source, username, password_source, password, 350 const url_parse::Component& password, [all...] |
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
candidate.h | 44 const std::string& username, const std::string& password, 48 preference_(preference), username_(username), password_(password), 77 const std::string & password() const { return password_; } function in class:cricket::Candidate 78 void set_password(const std::string & password) { password_ = password; }
|
/external/dropbear/ |
cli-auth.c | 124 /* Eventually there could be proper password-changing 126 * implement it, and password auth is last-resort 129 dropbear_close("Your password has expired."); 244 /* Order to try is pubkey, interactive, password. 283 * password is statically allocated by getpass() */ 286 char* password = NULL; local 288 password = getpass(prompt); 291 if (password == NULL || strchr(password, '\3') != NULL) { 294 return password; [all...] |
/tools/motodev/src/plugins/common/src/com/motorola/studio/android/common/utilities/ui/ |
LoginPasswordDialogCreator.java | 77 String password = dialog != null ? dialog.getTypedPassword() : null; local 78 return password; 85 private String password; field in class:LoginPasswordDialogCreator.LoginPasswordDialog 147 new Text(mainComposite, SWT.SINGLE | SWT.BORDER | SWT.PASSWORD); 154 password = passwordText.getText(); 168 return password;
|
/frameworks/base/core/java/android/net/http/ |
RequestHandle.java | 224 public void setupBasicAuthResponse(boolean isProxy, String username, String password) { 225 String response = computeBasicAuthResponse(username, password); 238 String password, 246 username, password, realm, nonce, QOP, algorithm, opaque); 273 * @return Basic-scheme authentication response: BASE64(username:password). 275 public static String computeBasicAuthResponse(String username, String password) { 277 Assert.assertNotNull(password); 279 // encode username:password to base64 280 return new String(Base64.encodeBase64((username + ':' + password).getBytes())); 297 String password, [all...] |
/frameworks/base/core/java/com/android/internal/widget/ |
LockPatternUtils.java | 197 * Gets the device policy password mode. If the mode is non-specific, returns 239 * Returns the actual password mode, as set by keyguard after updating the password. 297 KeyStore.getInstance().password(patternToString(pattern)); 306 * Check to see if a password matches the saved password. If no password exists, 308 * @param password The password to check. 309 * @return Whether the password matches the stored one [all...] |
/external/zlib/src/contrib/minizip/ |
miniunz.c | 196 printf("Usage : miniunz [-e] [-x] [-v] [-l] [-o] [-p password] file.zip [file_to_extr.] [-d extractdir]\n\n" \ 203 " -p extract crypted file using password\n\n"); 312 int do_extract_currentfile(uf,popt_extract_without_path,popt_overwrite,password) 316 const char* password; 370 err = unzOpenCurrentFilePassword(uf,password); 475 int do_extract(uf,opt_extract_without_path,opt_overwrite,password) 479 const char* password; 494 password) != UNZ_OK) 511 int do_extract_onefile(uf,filename,opt_extract_without_path,opt_overwrite,password) 516 const char* password; 540 const char *password=NULL; local [all...] |
/tools/motodev/src/plugins/certmanager/src/com/motorolamobility/studio/android/certmanager/core/ |
KeyStoreUtils.java | 82 * Creates a new empty KeyStore, from the default type, located at keyStoreFile with the password, password 84 * @param password the password for the new KeyStore 89 public static KeyStore createKeystore(File keyStoreFile, char[] password) 92 return createKeystore(keyStoreFile, KeyStore.getDefaultType(), password); 96 * Creates a new empty KeyStore, located at keyStoreFile with the password, password 99 * @param password the password for the new KeyStor [all...] |
/external/chromium/net/url_request/ |
url_request_ftp_job.cc | 111 server_auth_->password); 122 SetAuth(cached_auth->username, cached_auth->password); 124 // Prompt for a username/password. 153 server_auth_->password, 205 const string16& password) { 209 server_auth_->password = password; 212 username, password);
|
/external/chromium/net/http/ |
http_auth_sspi_win.cc | 53 const string16& password, 63 identity.Password = 64 reinterpret_cast<unsigned short*>(const_cast<wchar_t*>(password.c_str())); 65 identity.PasswordLength = password.size(); 69 // Pass the username/password to get the credentials handle. 88 // Pass the username/password to get the credentials handle. 254 const string16* password, 257 DCHECK((username == NULL) == (password == NULL)); 261 int rv = OnFirstRound(username, password); 294 const string16* password) { [all...] |