/packages/apps/IM/plugin/com/android/im/plugin/ |
H A D | PasswordDigest.java | 23 * The password digest method used in IMPS login transaction. 34 * Generates the digest bytes of the password. 38 * @param password The user password. 39 * @return The digest bytes of the password. 42 String digest(String schema, String nonce, String password) throws ImException; argument
|
/packages/apps/IM/src/com/android/im/imps/ |
H A D | StandardPasswordDigest.java | 31 public String digest(String schema, String nonce, String password) throws ImException { argument 36 inputBytes = (nonce + password).getBytes("ISO-8859-1");
|
H A D | CustomPasswordDigest.java | 41 public String digest(String schema, String nonce, String password) throws ImException { argument 42 return mPasswordDigest.digest(schema, nonce, password);
|
/packages/apps/IM/src/com/android/im/engine/ |
H A D | LoginInfo.java | 27 public LoginInfo(String userName, String password) { argument 29 mPassword = password;
|
/packages/apps/Email/src/com/android/email/mail/transport/ |
H A D | SmtpSender.java | 59 * smtp://user:password@server:port 60 * smtp+tls+://user:password@server:port 61 * smtp+tls+trustallcerts://user:password@server:port 62 * smtp+ssl+://user:password@server:port 63 * smtp+ssl+trustallcerts://user:password@server:port 242 * is logged (if debug logging is enabled) so do not use this function for user ID or password. 303 private void saslAuthLogin(String username, String password) throws MessagingException, argument 311 Base64.encodeToString(password.getBytes(), Base64.NO_WRAP), 312 "/password redacted/"); 322 private void saslAuthPlain(String username, String password) throw argument [all...] |
/packages/apps/Email/src/com/android/email/mail/store/ |
H A D | ExchangeStore.java | 63 * eas://user:password@server/domain 226 throw new MessagingException("user name and password not specified"); 269 public Bundle autoDiscover(Context context, String username, String password) argument 273 .autoDiscover(username, password);
|
/packages/apps/Email/src/com/android/exchange/ |
H A D | SSLSocketFactory.java | 106 * For simplicity use the same password for the key as that of the keystore 248 private static KeyManager[] createKeyManagers(final KeyStore keystore, final String password) argument 255 kmfactory.init(keystore, password != null ? password.toCharArray(): null);
|
H A D | AbstractSyncService.java | 108 * @param password 114 public abstract void validateAccount(String host, String userName, String password, int port, argument 136 * @param password 143 String userName, String password, int port, boolean ssl, boolean trustCertificates, 149 svc.validateAccount(host, userName, password, port, ssl, trustCertificates, context); 142 validate(Class<? extends AbstractSyncService> klass, String host, String userName, String password, int port, boolean ssl, boolean trustCertificates, Context context) argument
|
H A D | EasSyncService.java | 389 public void validateAccount(String hostAddress, String userName, String password, int port, argument 397 svc.mPassword = password; 541 * only an email address and the password 544 * @param password the user's password 547 public Bundle tryAutodiscover(String userName, String password) throws RemoteException { argument 570 // Initialize the user name and password 572 mPassword = password; 633 // We use the user name and password that were successful during
|
/packages/apps/Settings/src/com/android/settings/vpn/ |
H A D | AuthenticationActor.java | 42 * input username and password before connecting to the VPN server. 120 private void connect(final String username, final String password) { argument 127 .connect(mProfile, username, password);
|
/packages/apps/CertInstaller/src/com/android/certinstaller/ |
H A D | CredentialHelper.java | 248 boolean extractPkcs12(String password) { argument 250 return extractPkcs12Internal(password); 257 private boolean extractPkcs12Internal(String password) argument 263 new PasswordProtection(password.toCharArray());
|
H A D | CertInstaller.java | 240 void extractPkcs12InBackground(final String password) { argument 246 final boolean success = mCredentials.extractPkcs12(password); 292 final String password = mView.getText(R.id.credential_password); 294 if (TextUtils.isEmpty(password)) { 298 mNextAction = new Pkcs12ExtractAction(password); 402 Pkcs12ExtractAction(String password) { argument 403 mPassword = password;
|
/packages/apps/Email/src/com/android/email/ |
H A D | ExchangeUtils.java | 85 public Bundle autoDiscover(String userName, String password) throws RemoteException { argument 130 public int validate(String protocol, String host, String userName, String password, argument
|
/packages/apps/Email/src/com/android/email/activity/setup/ |
H A D | AccountSetupCheckSettings.java | 65 private static final String EXTRA_AUTO_DISCOVER_PASSWORD = "password"; 95 String userName, String password) { 100 i.putExtra(EXTRA_AUTO_DISCOVER_PASSWORD, password); 154 String password = intent.getStringExtra(EXTRA_AUTO_DISCOVER_PASSWORD); 160 userName, password); 94 actionAutoDiscover(Activity fromActivity, EmailContent.Account account, String userName, String password) argument
|
H A D | AccountSetupBasics.java | 54 * Prompts the user for the email address and password. Also prompts for 77 private final static String EXTRA_PASSWORD = "com.android.email.AccountSetupBasics.password"; 106 String username, String password, boolean easFlow) { 109 i.putExtra(EXTRA_PASSWORD, password); 353 String password = mPasswordView.getText().toString().trim(); 367 + password, incomingUriTemplate.getHost(), incomingUriTemplate.getPort(), 377 + password, outgoingUriTemplate.getHost(), outgoingUriTemplate.getPort(), 471 String password = mPasswordView.getText().toString().trim(); 479 if (ENTER_DEBUG_SCREEN && "d@d.d".equals(email) && "debug".equals(password)) { 490 URI uri = new URI("placeholder", user + ":" + password, domai 105 actionNewAccountWithCredentials(Activity fromActivity, String username, String password, boolean easFlow) argument [all...] |
/packages/apps/Email/src/com/android/email/mail/ |
H A D | Store.java | 156 * scheme [+ security [+]] :// username : password @ host [ / resource ] 162 * Username, password, and host are as expected. 290 * Handle discovery of account settings using only the user's email address and password 293 * @param password the password of the exchange user 297 public Bundle autoDiscover(Context context, String emailAddress, String password) argument
|
/packages/apps/Email/src/com/android/email/service/ |
H A D | EmailServiceProxy.java | 196 final String password, final int port, final boolean ssl, 202 mReturn = mService.validate(protocol, host, userName, password, port, ssl, 217 public Bundle autoDiscover(final String userName, final String password) argument 223 mReturn = mService.autoDiscover(userName, password); 195 validate(final String protocol, final String host, final String userName, final String password, final int port, final boolean ssl, final boolean trustCertificates) argument
|
/packages/apps/IM/src/com/android/im/service/ |
H A D | ImConnectionAdapter.java | 143 public void login(long accountId, String userName, String password, argument 149 mConnection.loginAsync(new LoginInfo(userName, password));
|
/packages/apps/Settings/src/com/android/settings/ |
H A D | ChooseLockPassword.java | 201 * @param password the raw password the user typed in 202 * @return error message to show to user or null if password is OK 204 private String validatePassword(String password) { argument 205 if (password.length() < mPasswordMinLength) { 210 if (password.length() > mPasswordMaxLength) { 218 for (int i = 0; i < password.length(); i++) { 219 char c = password.charAt(i); 317 * Update the hint based on current Stage and length of password entry 320 String password [all...] |
H A D | SecuritySettings.java | 343 private void initialize(String password) { argument 344 mKeyStore.password(password); 358 private int unlock(String password) { argument 359 mKeyStore.unlock(password); 364 mKeyStore.password(oldPassword, newPassword);
|
/packages/apps/Browser/src/com/android/browser/ |
H A D | BrowserActivity.java | 1021 String password = ((TextView) mHttpAuthenticationDialog 1027 name, password, focusId); 3303 final String name, final String password, int focusId) { 3310 if (password != null) { 3311 ((EditText) v.findViewById(R.id.password_edit)).setText(password); 3380 * Set HTTP authentication password. 3382 * @param host The host for the password 3383 * @param realm The realm for the password 3384 * @param username The username for the password. If it is null, it means 3385 * password ca 3301 showHttpAuthentication(final HttpAuthHandler handler, final String host, final String realm, final String title, final String name, final String password, int focusId) argument 3388 setHttpAuthUsernamePassword(String host, String realm, String username, String password) argument [all...] |