HomeSort by relevance Sort by last modified time
    Searched refs:PASSWORD (Results 1 - 25 of 61) sorted by null

1 2 3

  /frameworks/base/core/java/android/webkit/
WebTextView.java 32 static final int PASSWORD = 2;
  /libcore/luni/src/test/java/libcore/javax/crypto/
SecretKeyFactoryTest.java 29 private static final char[] PASSWORD = "google".toCharArray();
50 // PBEKeySpecs password only constructor
64 KeySpec ks = new PBEKeySpec(PASSWORD);
85 KeySpec ks = new PBEKeySpec(PASSWORD, SALT, ITERATIONS);
105 KeySpec ks = new PBEKeySpec(PASSWORD, SALT, ITERATIONS, KEY_LENGTH);
110 test_PBKDF2(PASSWORD, SALT, ITERATIONS, KEY_LENGTH,
125 char[] password = "password".toCharArray(); local
136 test_PBKDF2(password, salt, iterations, keyLength, expected);
145 char[] password = ("All n-entities must communicate with other local
    [all...]
  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/
EasSyncServiceTests.java 40 static private final String PASSWORD = "password";
100 svc.mPassword = PASSWORD;
113 assertEquals("Basic " + Base64.encodeToString((USER+":"+PASSWORD).getBytes(),
123 assertEquals("Basic " + Base64.encodeToString((user+":"+PASSWORD).getBytes(),
  /system/security/keystore/
keystore.h 54 PASSWORD = 7,
81 'p', // PASSWORD
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/testauth/
TestAuthenticator.java 34 private static final String PASSWORD = "xxx"; // any string will do.
70 AccountManager.get(mContext).addAccountExplicitly(account, PASSWORD, null);
  /external/nist-sip/java/gov/nist/javax/sip/header/
ParameterNames.java 52 public static final String PASSWORD = "password";
  /packages/apps/Exchange/tests/src/com/android/exchange/
EasSyncServiceTests.java 40 static private final String PASSWORD = "password";
100 svc.mPassword = PASSWORD;
113 assertEquals("Basic " + Base64.encodeToString((USER+":"+PASSWORD).getBytes(),
123 assertEquals("Basic " + Base64.encodeToString((user+":"+PASSWORD).getBytes(),
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLServerSocketTest.java 386 private String PASSWORD = "android";
398 keyStore.load(inputStream, PASSWORD.toCharArray());
403 keyManagerFactory.init(keyStore, PASSWORD.toCharArray());
HandshakeCompletedEventTest.java 207 private String PASSWORD = "android";
544 keyStore.load(inputStream, PASSWORD.toCharArray());
549 keyManagerFactory.init(keyStore, PASSWORD.toCharArray());
SSLSessionTest.java 457 private String PASSWORD = "android";
625 keyStore.load(inputStream, PASSWORD.toCharArray());
637 keyManagerFactory.init(keyStore, PASSWORD.toCharArray());
SSLSocketTest.java 420 private String PASSWORD = "android";
594 keyStore.load(inputStream, PASSWORD.toCharArray());
599 keyManagerFactory.init(keyStore, PASSWORD.toCharArray());
  /tools/motodev/src/plugins/common/src/com/motorola/studio/android/common/utilities/ui/
PasswordInputDialog.java 68 * @param changePassword: true if you want this dialog be a change password dialog (it will present old, new and confirm new fields). False to show only enter password field
69 * @param oldPassword: null if user must enter oldpassword. Anything to create dialog with preentered password (only if changePassword is true);
116 oldPasswordText = new Text(mainComposite, SWT.BORDER | SWT.SINGLE | SWT.PASSWORD);
152 newPasswordText = new Text(mainComposite, SWT.BORDER | SWT.SINGLE | SWT.PASSWORD);
164 new Text(mainComposite, SWT.BORDER | SWT.SINGLE | SWT.PASSWORD);
189 //Creates the save password checkbox
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;
  /external/chromium/googleurl/src/
url_parse.h 114 PASSWORD,
152 // PASSWORD: 5 5
169 // Username. Specified in URLs with an @ sign before the host. See |password|
172 // Password. The length will be -1 if unspecified, 0 if specified but empty.
173 // Not all URLs with a username have a password, as in "http://me@host/".
174 // The password is separated form the username with a colon, as in
176 Component password; member in struct:url_parse::Parsed
273 Component* password,
279 Component* password,
url_parse_unittest.cc 79 const char* password; member in struct:__anon4319::URLParseCase
180 {"http://u:p@h:8/p?q#r", Parsed::PASSWORD, true, 9},
181 {"http://u:p@h:8/p?q#r", Parsed::PASSWORD, false, 9},
199 // This case is a little weird. It will report that the password would
203 {"http://u@h/", Parsed::PASSWORD, true, 9},
211 {"file:///c:/foo", Parsed::PASSWORD, true, 7},
287 // ... "]" in the password field isn't allowed, but we tolerate it here...
340 EXPECT_TRUE(ComponentMatches(url, cases[i].password, parsed.password));
377 ExpectInvalidComponent(parsed.password);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
KeystoreSelectionPage.java 106 new Label(composite, SWT.NONE).setText("Password:");
107 mKeystorePassword = new Text(composite, SWT.BORDER | SWT.PASSWORD);
115 mKeystorePassword2 = new Text(composite, SWT.BORDER | SWT.PASSWORD);
239 setErrorMessage("Enter keystore password.");
243 setErrorMessage("Keystore password is too short - must be at least 6 characters.");
250 setErrorMessage("Confirm keystore password.");
KeyCreationPage.java 79 new Label(composite, SWT.NONE).setText("Password:");
80 mKeyPassword = new Text(composite, SWT.BORDER | SWT.PASSWORD);
85 mKeyPassword2 = new Text(composite, SWT.BORDER | SWT.PASSWORD);
264 setErrorMessage("Enter key password.");
268 setErrorMessage("Key password is too short - must be at least 6 characters.");
KeySelectionPage.java 96 mKeyPasswordLabel.setText("Password:");
97 mKeyPassword = new Text(composite, SWT.BORDER | SWT.PASSWORD);
152 // keystore password is wrong
155 // get the alias list (also used as a keystore password test)
196 // reset the password
252 setErrorMessage("Enter key password.");
  /tools/motodev/src/plugins/certmanager/src/com/motorolamobility/studio/android/certmanager/ui/composite/
NewKeyBlock.java 104 //KEYSTORE PASSWORD SECTION
109 keyPassword = new Text(passwordGroup, SWT.SINGLE | SWT.BORDER | SWT.PASSWORD);
124 //CONFIRM PASSWORD SECTION
131 keyConfirmPassword = new Text(passwordGroup, SWT.SINGLE | SWT.BORDER | SWT.PASSWORD);
137 //Creates the save password checkbox
146 //we can not save password if keystore is not mapped in the view
255 //if there is no error message on other items => check password fields
258 //password text and confirmation password text must match
263 //check password size according to keytool specification
    [all...]
  /tools/motodev/src/plugins/certmanager/src/com/motorolamobility/studio/android/certmanager/ui/wizards/
SelectExistentKeystorePage.java 58 private String password = null; field in class:SelectExistentKeystorePage
82 //KEYSTORE PASSWORD SECTION
87 keystorePassword = new Text(getMainComposite(), SWT.SINGLE | SWT.BORDER | SWT.PASSWORD);
97 password = keystorePassword.getText();
102 //Creates the save password checkbox
151 * @return the password
155 return password;
  /external/chromium/net/tools/testserver/
chromiumsync.py 43 PASSWORD,
61 PASSWORD: password_specifics_pb2.password,
258 parent_tag='google_chrome', sync_type=PASSWORD),
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
SSLSocketTest.java 577 * Defines the password for the keystore.
579 private static final String PASSWORD = "android";
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
TelephonyProvider.java 138 "password TEXT," +
208 // the authentication will default to 0 (if no user / password) is specified
261 map.put(Telephony.Carriers.PASSWORD, parser.getAttributeValue(null, "password"));
531 if (!values.containsKey(Telephony.Carriers.PASSWORD)) {
532 values.put(Telephony.Carriers.PASSWORD, "");
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
HostAuth.java 52 public static final int FLAG_AUTHENTICATE = 0x04; // Use name/password for authentication
79 HostAuthColumns.PASSWORD, HostAuthColumns.DOMAIN, HostAuthColumns.CLIENT_CERT_ALIAS
191 values.put(HostAuthColumns.PASSWORD, mPassword);
199 * Sets the user name and password from URI user info string
215 * Sets the user name and password
229 * Returns the login information. [0] is the username and [1] is the password. If
235 String password = (mPassword != null) ? mPassword : ""; local
236 return new String[] { trimUser, password };
381 * The flag, password, and client cert alias are the only items likely to change after a
399 * "eas+ssl+trustallcerts://user:password@server/domain:123
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/ui/
AuthenticationDialog.java 30 * Dialog which collects from the user his/her login and password.
101 // add password label and text field
103 lblPassword.setText("Password:");
107 mTxtPassword = new Text(upperComposite, SWT.SINGLE | SWT.PASSWORD | SWT.BORDER);
170 * Retrieves the Password field information
172 * @return Password field value or empty String. Return value is never null

Completed in 818 milliseconds

1 2 3