Searched defs:password (Results 51 - 75 of 419) sorted by relevance

1234567891011>>

/external/apache-harmony/x-net/src/test/support/common/java/org/apache/harmony/xnet/tests/support/
H A DMyKeyManagerFactorySpi.java38 protected void engineInit(KeyStore ks, char[] password) argument
41 if (password == null) {
42 throw new KeyStoreException("Incorrect password");
/external/apache-http/src/org/apache/http/auth/
H A DNTCredentials.java57 private final String password; field in class:NTCredentials
63 * The constructor with the fully qualified username and password combined
66 * @param usernamePassword the domain/username:password formed string
71 throw new IllegalArgumentException("Username:password string may not be null");
77 this.password = usernamePassword.substring(atColon + 1);
80 this.password = null;
99 * @param password The password.
106 final String password,
114 this.password
104 NTCredentials( final String userName, final String password, final String workstation, final String domain) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DPBEParametersGenerator.java10 protected byte[] password; field in class:PBEParametersGenerator
24 * @param password the password converted into bytes (see below).
25 * @param salt the salt to be mixed with the password.
30 byte[] password,
34 this.password = password;
40 * return the password byte array.
42 * @return the password byte array.
46 return password;
29 init( byte[] password, byte[] salt, int iterationCount) argument
103 PKCS5PasswordToBytes( char[] password) argument
130 PKCS5PasswordToUTF8Bytes( char[] password) argument
150 PKCS12PasswordToBytes( char[] password) argument
[all...]
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwHttpAuthHandler.java16 public void proceed(String username, String password) { argument
18 nativeProceed(mNativeAwHttpAuthHandler, username, password);
50 String username, String password);
49 nativeProceed(long nativeAwHttpAuthHandler, String username, String password) argument
/external/chromium_org/android_webview/native/
H A Daw_http_auth_handler.cc42 jstring password) {
46 ConvertJavaStringToUTF16(env, password));
39 Proceed(JNIEnv* env, jobject obj, jstring user, jstring password) argument
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DLoginPrompt.java43 mPasswordView = (EditText) v.findViewById(R.id.password);
109 public void onAutofillDataAvailable(String username, String password) { argument
111 mPasswordView.setText(password);
/external/chromium_org/chrome/browser/ui/views/
H A Dlogin_view.cc50 // Add the column set for the user name and password fields and labels.
103 const base::string16& password) {
106 password_field_->SetText(password);
102 OnAutofillDataAvailable(const base::string16& username, const base::string16& password) argument
/external/chromium_org/components/signin/core/browser/
H A Dsignin_manager_base.h53 const std::string& password) {}
51 GoogleSigninSucceeded(const std::string& account_id, const std::string& username, const std::string& password) argument
/external/chromium_org/net/base/
H A Dauth.cc33 const base::string16& password)
35 password_(password) {
42 const base::string16& password) {
44 password_ = password;
32 AuthCredentials(const base::string16& username, const base::string16& password) argument
41 Set(const base::string16& username, const base::string16& password) argument
/external/chromium_org/sync/util/
H A Dcryptographer.h33 std::string password; member in struct:syncer::KeyParams
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dplainsaslhandler.h40 PlainSaslHandler(const Jid & jid, const rtc::CryptString & password, argument
41 bool allow_plain) : jid_(jid), password_(password),
/external/chromium_org/third_party/tlslite/scripts/
H A Dtlsdb.py92 password = args.get(4) variable
100 N, g, salt, verifier = VerifierDB.makeVerifier(username, password, bits)
114 password = args.getLast(4) variable
116 password = None variable
125 if password:
126 if db.check(username, password):
/external/smack/src/org/apache/harmony/javax/security/auth/callback/
H A DPasswordCallback.java26 * Is used in conjunction with a {@link CallbackHandler} to retrieve a password
81 * Sets the password. The {@link CallbackHandler} that performs the actual
82 * provisioning or input of the password needs to call this method to hand
83 * back the password to the security service that requested it.
85 * @param password
86 * the password. A copy of this is stored, so subsequent changes
89 public void setPassword(char[] password) { argument
90 if (password == null) {
91 this.inputPassword = password;
93 inputPassword = new char[password
[all...]
/external/smack/src/org/jivesoftware/smack/packet/
H A DAuthentication.java32 private String password = null; field in class:Authentication
67 * Returns the plain text password or <tt>null</tt> if the password hasn't
70 * @return the password.
73 return password;
77 * Sets the plain text password.
79 * @param password the password.
81 public void setPassword(String password) { argument
82 this.password
111 setDigest(String connectionID, String password) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_md5.c34 const u8 *pos, *challenge, *password; local
38 password = eap_get_config_password(sm, &password_len);
39 if (password == NULL) {
89 if (chap_md5(id, password, password_len, challenge, challenge_len,
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_md5.c34 const u8 *pos, *challenge, *password; local
38 password = eap_get_config_password(sm, &password_len);
39 if (password == NULL) {
89 if (chap_md5(id, password, password_len, challenge, challenge_len,
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Deap_md5.c34 const u8 *pos, *challenge, *password; local
38 password = eap_get_config_password(sm, &password_len);
39 if (password == NULL) {
89 if (chap_md5(id, password, password_len, challenge, challenge_len,
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DMyKeyStoreSpi.java44 public Key engineGetKey(String alias, char[] password) argument
61 public void engineSetKeyEntry(String alias, Key key, char[] password, argument
108 public void engineStore(OutputStream stream, char[] password) argument
120 public void engineLoad(InputStream stream, char[] password) argument
/external/chromium_org/android_webview/browser/
H A Daw_login_delegate.cc71 const base::string16& password) {
75 this, user, password));
112 const base::string16& password) {
115 request_->SetAuth(net::AuthCredentials(user, password));
70 Proceed(const base::string16& user, const base::string16& password) argument
111 ProceedOnIOThread(const base::string16& user, const base::string16& password) argument
/external/chromium_org/chrome/browser/chromeos/login/supervised/
H A Dsupervised_user_authenticator.h37 const std::string& password,
59 const std::string password; member in class:chromeos::SupervisedUserAuthenticator::AuthAttempt
86 const std::string& password);
89 const std::string& password);
92 const std::string& password,
/external/chromium_org/chrome/browser/signin/
H A Dfake_signin_manager.cc52 const std::string& password,
55 set_password(password);
72 const std::string& password) {
74 std::string(), username, password, OAuthTokenFetchedCallback()); local
49 StartSignInWithRefreshToken( const std::string& refresh_token, const std::string& username, const std::string& password, const OAuthTokenFetchedCallback& oauth_fetched_callback) argument
71 SignIn(const std::string& username, const std::string& password) argument
H A Dsignin_names_io_thread.cc76 const std::string& password) {
74 GoogleSigninSucceeded(const std::string& account_id, const std::string& username, const std::string& password) argument
/external/chromium_org/chrome/browser/ui/android/
H A Dchrome_http_auth_handler.cc52 const base::string16& password) {
58 ConvertUTF16ToJavaString(env, password);
67 jstring password) {
70 base::string16 password16 = ConvertJavaStringToUTF16(env, password);
50 OnAutofillDataAvailable( const base::string16& username, const base::string16& password) argument
64 SetAuth(JNIEnv* env, jobject, jstring username, jstring password) argument
/external/chromium_org/chrome/browser/ui/
H A Dcrypto_module_delegate_nss.cc83 void ChromeNSSCryptoModuleDelegate::GotPassword(const std::string& password) { argument
84 if (!password.empty())
85 password_ = password;
H A Dcrypto_module_password_dialog_nss.cc39 void GotPassword(const std::string& password);
84 void SlotUnlocker::GotPassword(const std::string& password) { argument
89 if (password.empty()) {
90 // User cancelled entering password. Oh well.
98 password.c_str());
100 // Incorrect password. Try again.
109 // Correct password (SECSuccess) or too many attempts/other failure

Completed in 571 milliseconds

1234567891011>>