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

1 2 3 4 5

  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
PassCommandHandlerTest.groovy 35 def PASSWORD = "password123"
43 handleCommand([PASSWORD])
52 handleCommand([PASSWORD])
78 handleCommand([PASSWORD])
87 handleCommand([PASSWORD])
94 handleCommand([PASSWORD])
122 userAccount = new UserAccount(USERNAME, PASSWORD, HOME_DIRECTORY)
133 return new Command(CommandNames.PASS, [PASSWORD])
  /cts/apps/CtsVerifier/
create_test_certs.sh 22 PASSWORD='androidtest'
39 -passout 'pass:'"$PASSWORD" \
70 -passin 'pass:'"$PASSWORD" \
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/
UserAccountTest.groovy 33 private static final PASSWORD = "password123"
40 def acct = new UserAccount(USERNAME, PASSWORD, HOME_DIR)
42 assert acct.password == PASSWORD
61 userAccount.password = PASSWORD
62 assert userAccount.isValidPassword(PASSWORD)
70 userAccount.password = PASSWORD
71 shouldFailWithMessageContaining('username') { userAccount.isValidPassword(PASSWORD) }
    [all...]
FakeFtpServerIntegrationTest.groovy 44 static final PASSWORD = "password"
248 LOG.info("Logging in as $USERNAME/$PASSWORD")
249 assert ftpClient.login(USERNAME, PASSWORD)
250 verifyReplyCode("login with $USERNAME/$PASSWORD", 230)
259 LOG.info("Logging in as $USERNAME/$PASSWORD with $ACCOUNT")
260 assert ftpClient.login(USERNAME, PASSWORD, ACCOUNT)
261 verifyReplyCode("login with $USERNAME/$PASSWORD with $ACCOUNT", 230)
456 userAccount = new UserAccount(USERNAME, PASSWORD, HOME_DIR)
478 assert ftpClient.login(USERNAME, PASSWORD)
    [all...]
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/example/
RemoteFile.java 32 public static final String PASSWORD = "password";
41 ftpClient.login(USERNAME, PASSWORD);
  /external/autotest/client/common_lib/cros/network/
wifi_rack_constants.py 8 PASSWORD = 'chromeos'
  /external/droiddriver/src/io/appium/droiddriver/finders/
Attribute.java 30 PASSWORD("password"),
  /platform_testing/tests/androidbvt/src/com/android/androidbvt/
SysUILockScreenTests.java 43 private static final String PASSWORD = "aaaa";
85 * Following test will add password for Lock Screen, and remove Password
90 setScreenLock(PASSWORD, "Password");
92 unlockScreen(PASSWORD);
93 removeScreenLock(PASSWORD);
99 * Following test will add password for Lock Screen, check Emergency Call Page existence, and
100 * remove password for Lock Screen
106 setScreenLock(PASSWORD, "Password")
    [all...]
  /libcore/luni/src/test/java/libcore/javax/crypto/
SecretKeyFactoryTest.java 30 private static final char[] PASSWORD = "google".toCharArray();
51 // PBEKeySpecs password only constructor
65 KeySpec ks = new PBEKeySpec(PASSWORD);
86 KeySpec ks = new PBEKeySpec(PASSWORD, SALT, ITERATIONS);
106 KeySpec ks = new PBEKeySpec(PASSWORD, SALT, ITERATIONS, KEY_LENGTH);
117 test_PBKDF2_UTF8(PASSWORD, SALT, ITERATIONS, KEY_LENGTH, expected);
118 test_PBKDF2_8BIT(PASSWORD, SALT, ITERATIONS, KEY_LENGTH, expected);
127 char[] password = "password".toCharArray(); local
138 test_PBKDF2_UTF8(password, salt, iterations, keyLength, expected)
148 char[] password = ("All n-entities must communicate with other " local
173 char[] password = "\\u0141\\u0142".toCharArray(); local
    [all...]
  /external/autotest/client/cros/
enterprise_base.py 19 PASSWORD = 'test0000'
81 password=None):
89 @param password: Log in using this password instead of the default.
98 password = self.PASSWORD if password is None else password
104 password=password)
    [all...]
vpn_server.py 119 '%(xauth-user)s : XAUTH "%(xauth-password)s"\n',
172 'xauth-password': self.XAUTH_PASSWORD,
218 PASSWORD = 'password'
230 EXPECTED_AUTHENTICATION_FILE : '%(username)s\n%(password)s\n',
270 'password': self.PASSWORD,
  /external/curl/tests/libtest/
lib1507.c 32 #define PASSWORD "123qwerty"
87 curl_easy_setopt(curl, CURLOPT_PASSWORD, PASSWORD);
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/tests/testauth/
TestAuthenticator.java 34 private static final String PASSWORD = "xxx"; // any string will do.
70 AccountManager.get(mContext).addAccountExplicitly(account, PASSWORD, null);
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/fake/example/
RemoteFileTest.java 65 UserAccount userAccount = new UserAccount(RemoteFile.USERNAME, RemoteFile.PASSWORD, HOME_DIR);
  /external/nist-sip/java/gov/nist/javax/sip/header/
ParameterNames.java 52 public static final String PASSWORD = "password";
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/ui/
AlertDialogTask.java 60 DEFAULT, MENU, SINGLE_CHOICE, MULTI_CHOICE, PLAIN_TEXT, PASSWORD;
165 mInputType = InputType.PASSWORD;
228 case PASSWORD:
289 if (mInputType == InputType.PLAIN_TEXT || mInputType == InputType.PASSWORD) {
  /developers/build/prebuilts/gradle/FingerprintDialog/Application/src/main/java/com/example/android/fingerprintdialog/
FingerprintAuthenticationDialogFragment.java 38 * A dialog which uses fingerprint APIs to authenticate the user, and falls back to password
97 mPassword = (EditText) v.findViewById(R.id.password);
111 // (password) screen.
152 * Switches to backup (password) screen. This either can happen when fingerprint is not
153 * available or the user chooses to use the password authentication method by pressing the
157 mStage = Stage.PASSWORD;
169 * Checks whether the current entered password is correct, and dismisses the the dialog and
194 * @return true if {@code password} is correct, false otherwise
196 private boolean checkPassword(String password) {
197 // Assume the password is always correct
    [all...]
  /developers/samples/android/security/FingerprintDialog/Application/src/main/java/com/example/android/fingerprintdialog/
FingerprintAuthenticationDialogFragment.java 38 * A dialog which uses fingerprint APIs to authenticate the user, and falls back to password
97 mPassword = (EditText) v.findViewById(R.id.password);
111 // (password) screen.
152 * Switches to backup (password) screen. This either can happen when fingerprint is not
153 * available or the user chooses to use the password authentication method by pressing the
157 mStage = Stage.PASSWORD;
169 * Checks whether the current entered password is correct, and dismisses the the dialog and
194 * @return true if {@code password} is correct, false otherwise
196 private boolean checkPassword(String password) {
197 // Assume the password is always correct
    [all...]
  /development/samples/browseable/FingerprintDialog/src/com.example.android.fingerprintdialog/
FingerprintAuthenticationDialogFragment.java 38 * A dialog which uses fingerprint APIs to authenticate the user, and falls back to password
97 mPassword = (EditText) v.findViewById(R.id.password);
111 // (password) screen.
152 * Switches to backup (password) screen. This either can happen when fingerprint is not
153 * available or the user chooses to use the password authentication method by pressing the
157 mStage = Stage.PASSWORD;
169 * Checks whether the current entered password is correct, and dismisses the the dialog and
194 * @return true if {@code password} is correct, false otherwise
196 private boolean checkPassword(String password) {
197 // Assume the password is always correct
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
SSLServerSocketTest.java 386 private String PASSWORD = "android";
398 keyStore.load(inputStream, PASSWORD.toCharArray());
403 keyManagerFactory.init(keyStore, PASSWORD.toCharArray());
  /packages/apps/Settings/src/com/android/settings/
CryptKeeperSettings.java 43 private static final String PASSWORD = "password";
83 * is no keyguard available, we prompt the user to set a password.
89 // TODO replace (or follow) this dialog with an explicit launch into password UI
188 String password = data.getStringExtra(ChooseLockSettingsHelper.EXTRA_KEY_PASSWORD); local
189 if (!TextUtils.isEmpty(password)) {
190 showFinalConfirmation(type, password);
195 private void showFinalConfirmation(int type, String password) {
199 addEncryptionInfoToPreference(preference, type, password);
203 private void addEncryptionInfoToPreference(Preference preference, int type, String password) {
    [all...]
  /tools/test/connectivity/acts/tests/google/wifi/
WifiEnterpriseTest.py 81 Ent.PASSWORD: self.eap_password,
99 Ent.PASSWORD: self.eap_password,
106 Ent.PASSWORD: self.eap_password,
143 # Set screen lock password so ConfigStore is unlocked.
276 Ent.PASSWORD: "wrong_password"
294 Ent.PASSWORD: "wrong_password",
  /developers/build/prebuilts/gradle/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/
FingerprintAuthenticationDialogFragment.java 55 * A dialog which uses fingerprint APIs to authenticate the user, and falls back to password
122 mPassword = (EditText) v.findViewById(R.id.password);
135 // (password) screen.
174 * Switches to backup (password) screen. This either can happen when fingerprint is not
175 * available or the user chooses to use the password authentication method by pressing the
179 mStage = Stage.PASSWORD;
209 mStoreBackend.enroll("user", "password", verificationKey);
217 * Checks whether the current entered password is correct, and dismisses the the dialog and lets
259 case PASSWORD:
318 PASSWORD
    [all...]
  /developers/samples/android/security/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/
FingerprintAuthenticationDialogFragment.java 55 * A dialog which uses fingerprint APIs to authenticate the user, and falls back to password
122 mPassword = (EditText) v.findViewById(R.id.password);
135 // (password) screen.
174 * Switches to backup (password) screen. This either can happen when fingerprint is not
175 * available or the user chooses to use the password authentication method by pressing the
179 mStage = Stage.PASSWORD;
209 mStoreBackend.enroll("user", "password", verificationKey);
217 * Checks whether the current entered password is correct, and dismisses the the dialog and lets
259 case PASSWORD:
318 PASSWORD
    [all...]
  /development/samples/browseable/AsymmetricFingerprintDialog/src/com.example.android.asymmetricfingerprintdialog/
FingerprintAuthenticationDialogFragment.java 55 * A dialog which uses fingerprint APIs to authenticate the user, and falls back to password
122 mPassword = (EditText) v.findViewById(R.id.password);
135 // (password) screen.
174 * Switches to backup (password) screen. This either can happen when fingerprint is not
175 * available or the user chooses to use the password authentication method by pressing the
179 mStage = Stage.PASSWORD;
209 mStoreBackend.enroll("user", "password", verificationKey);
217 * Checks whether the current entered password is correct, and dismisses the the dialog and lets
259 case PASSWORD:
318 PASSWORD
    [all...]

Completed in 670 milliseconds

1 2 3 4 5