HomeSort by relevance Sort by last modified time
    Searched refs:password (Results 76 - 100 of 792) sorted by null

1 2 34 5 6 7 8 91011>>

  /tools/motodev/src/plugins/certmanager/src/com/motorolamobility/studio/android/certmanager/ui/model/
IKeyStoreEntry.java 35 * @throws UnrecoverableKeyException if wrong password for the key
38 Key getKey(String password) throws UnrecoverableKeyException, KeyStoreException,
45 * @throws UnrecoverableKeyException if wrong password for the key
49 PrivateKey getPrivateKey(String password) throws UnrecoverableKeyException, KeyStoreException,
IKeyStore.java 36 List<String> getAliases(String password) throws KeyStoreManagerException,
47 * @param password
52 List<IKeyStoreEntry> getEntries(String password) throws KeyStoreManagerException,
58 * @param keystorePassword the password of the keystore
67 * @param password from keystore
121 * @param password
123 public boolean isPasswordValid(String password) throws KeyStoreManagerException,
127 * Return the password of the keystore.
128 * If the password is not saved and {@code promptPassword} is set to {@code true}, then a dialog will be opened so the user can enter the password.
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
MyKeyStoreSpi.java 45 public Key engineGetKey(String alias, char[] password)
62 public void engineSetKeyEntry(String alias, Key key, char[] password,
109 public void engineStore(OutputStream stream, char[] password)
121 public void engineLoad(InputStream stream, char[] password)
  /external/chromium/chrome/browser/chromeos/login/
screen_observer.h 46 // Notify about new user names and password. It is used to autologin
49 const std::string& password) = 0;
authenticator.h 22 // On password change detected, will call
32 // Given a |username| and |password|, this method attempts to authenticate
39 const std::string& password,
43 // Given a |username| and |password|, this method attempts to
48 const std::string& password) = 0;
65 // If a password logs the user in online, but cannot be used to
66 // mount his cryptohome, we expect that a password change has
69 // forward to use his new password. |old_password| is the password
85 const std::string& password,
    [all...]
mock_login_status_consumer.h 23 const std::string& password,
45 const std::string& password,
53 const std::string& password,
  /external/chromium/net/ftp/
ftp_transaction.h 47 const string16& password,
  /external/chromium/third_party/libjingle/source/talk/base/
proxyinfo.h 52 CryptString password; member in struct:talk_base::ProxyInfo
  /external/dropbear/libtomcrypt/src/misc/pkcs5/
pkcs_5_2.c 21 @param password The input password (or key)
22 @param password_len The length of the password (octets)
31 int pkcs_5_alg2(const unsigned char *password, unsigned long password_len,
42 LTC_ARGCHK(password != NULL);
78 if ((err = hmac_init(hmac, hash_idx, password, password_len)) != CRYPT_OK) {
95 if ((err = hmac_memory(hash_idx, password, password_len, buf[0], x, buf[0], &x)) != CRYPT_OK) {
pkcs_5_1.c 20 @param password The password (or key)
21 @param password_len The length of the password (octet)
29 int pkcs_5_alg1(const unsigned char *password, unsigned long password_len,
39 LTC_ARGCHK(password != NULL);
62 /* hash initial password + salt */
66 if ((err = hash_descriptor[hash_idx].process(md, password, password_len)) != CRYPT_OK) {
  /external/webkit/Source/JavaScriptCore/wtf/url/api/
ParsedURL.h 44 String password() const;
  /external/webkit/Source/JavaScriptCore/wtf/url/src/
URLSegments.h 45 Password,
82 // Password: 5 5
95 URLComponent password; member in class:WTF::URLSegments
URLSegments.cpp 64 if (password.isValid()) {
65 if (type <= Password)
66 return password.begin();
67 current = password.end() + 1; // Advance over the '@' at the end.
  /external/webkit/Source/WebCore/html/
PasswordInputType.cpp 47 return InputTypeNames::password();
52 // Should never save/restore password fields.
58 // Should never save/restore password fields.
64 // Input methods are disabled for the password field because otherwise
65 // anyone can access the underlying password and display it in clear text.
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_md5.c 40 const u8 *pos, *challenge, *password; local
44 password = eap_get_config_password(sm, &password_len);
45 if (password == NULL) {
46 wpa_printf(MSG_INFO, "EAP-MD5: Password not configured");
95 chap_md5(id, password, password_len, challenge, challenge_len, rpos);
mschapv2.h 25 const u8 *password, size_t password_len,
  /external/wpa_supplicant_8/src/eap_peer/
eap_md5.c 34 const u8 *pos, *challenge, *password; local
38 password = eap_get_config_password(sm, &password_len);
39 if (password == NULL) {
40 wpa_printf(MSG_INFO, "EAP-MD5: Password not configured");
89 if (chap_md5(id, password, password_len, challenge, challenge_len,
mschapv2.h 19 const u8 *password, size_t password_len,
  /libcore/luni/src/main/java/javax/net/ssl/
KeyManagerFactorySpi.java 39 * Initializes this instance with the specified key store and password.
43 * @param password
44 * the key store password.
52 protected abstract void engineInit(KeyStore ks, char[] password) throws KeyStoreException,
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
TrustedCertificateKeyStoreSpi.java 35 @Override public Key engineGetKey(String alias, char[] password) {
58 String alias, Key key, char[] password, Certificate[] chain) {
104 @Override public void engineStore(OutputStream stream, char[] password) {
108 @Override public void engineLoad(InputStream stream, char[] password) {
  /external/chromium/chrome/browser/printing/cloud_print/
cloud_print_setup_message_handler.cc 30 std::string username, password, captcha, access_code; local
44 !result->GetString("pass", &password) ||
53 flow_->OnUserSubmittedAuth(username, password, captcha, access_code);
  /external/chromium/chrome/browser/sync/
signin_manager.h 25 // A listener might use this to make note of a username / password
31 password(in_password) {}
33 std::string password; member in struct:GoogleServiceSigninSuccessDetails
58 const std::string& password,
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketUserauthRequestPassword.java 21 String password; field in class:PacketUserauthRequestPassword
27 this.password = pass;
47 if (method.equals("password") == false)
48 throw new IOException("This is not a SSH_MSG_USERAUTH_REQUEST with type password!");
64 tw.writeString("password");
66 tw.writeString(password);
  /libcore/luni/src/test/java/libcore/java/security/cert/
PKIXParametersTest.java 30 char[] password = "password".toCharArray(); local
37 ks.setKeyEntry("key", pke.getPrivateKey(), password, pke.getCertificateChain());
44 keyOnly.setKeyEntry("key", pke.getPrivateKey(), password, pke.getCertificateChain());
  /tools/motodev/src/plugins/common/src/com/motorola/studio/android/common/proxy/
ProxyAuthenticator.java 29 * access network without bothering the user with login/password dialogs.
69 String password = proxyData.getPassword(); local
72 (password == null ? "" : password).toCharArray());
76 // if setting Eclipse proxy fails, let the superclass open the user/password prompt dialog

Completed in 1029 milliseconds

1 2 34 5 6 7 8 91011>>