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

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/
PBEParametersGenerator.java 6 * super class for all Password Based Encryption (PBE) parameter generator classes.
10 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
    [all...]
  /libcore/luni/src/main/java/javax/crypto/spec/
PBEKeySpec.java 24 * The key specification for a <i>password based encryption</i> key.
26 * Password based encryption is described in <a
31 private char[] password; field in class:PBEKeySpec
37 * Creates a new <code>PBEKeySpec</code> with the specified password.
39 * @param password
40 * the password.
42 public PBEKeySpec(char[] password) {
43 if (password == null) {
44 this.password = new char[0];
46 this.password = new char[password.length]
    [all...]
  /libcore/luni/src/main/java/java/net/
PasswordAuthentication.java 22 * password which is used by the {@code Authenticator} class.
30 private char[] password; field in class:PasswordAuthentication
33 * Creates an instance of a password authentication with a specified
34 * username and password.
38 * @param password
39 * the associated password to store.
41 public PasswordAuthentication(String userName, char[] password) {
43 this.password = password.clone();
47 * Gets a clone of the password stored by this instance. The user i
    [all...]
  /frameworks/base/obex/javax/obex/
PasswordAuthentication.java 36 * This class holds user name and password combinations.
47 * password provided.
49 * @param password the password to include in the response
50 * @throws NullPointerException if <code>password</code> is
53 public PasswordAuthentication(final byte[] userName, final byte[] password) {
59 mPassword = new byte[password.length];
60 System.arraycopy(password, 0, mPassword, 0, password.length);
73 * Retrieves the password
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/address/
UserInfo.java 51 /** password field
53 protected String password; field in class:UserInfo
89 if (this.password != null && other.password == null)
92 if (other.password != null && this.password == null)
95 if (this.password == other.password)
98 return (this.password.equals(other.password));
    [all...]
  /external/webkit/WebKitTools/BuildSlaveSupport/build.webkit.org-config/webkit/
auth.py 4 def createBuildSlave((name, password)):
5 return BuildSlave(name, password, max_builds=1)
9 return [("slave-name", "password")]
  /external/chromium/net/ftp/
ftp_auth_cache.h 30 const std::wstring& password)
33 password(password) {
38 std::wstring password; member in struct:net::FtpAuthCache::Entry
48 // |password|). If there is already an entry for |origin|, it will be
51 const std::wstring& password);
54 // |username| and |password|.
56 const std::wstring& password);
ftp_auth_cache.cc 24 const std::wstring& password) {
31 entry->password = password;
33 entries_.push_front(Entry(origin, username, password));
42 const std::wstring& password) {
45 it->password == password) {
  /libcore/luni/src/test/java/libcore/java/net/
OldPasswordAuthenticationTest.java 27 char[] password = "hunter2".toCharArray(); local
35 PasswordAuthentication pa = new PasswordAuthentication(null, password);
37 assertEquals(password.length, pa.getPassword().length);
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
PBEKeySpecTest.java 45 * PBEKeySpec(char[] password) method testing. Tests the behavior of
64 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
65 PBEKeySpec pbeks = new PBEKeySpec(password);
66 password[0] ++;
67 assertFalse("The change of password specified in the constructor "
69 password[0] == pbeks.getPassword()[0]);
73 * PBEKeySpec(char[] password, byte[] salt, int iterationCount, int
85 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
102 new PBEKeySpec(password, null, iterationCount, keyLength);
111 new PBEKeySpec(password, new byte [0], iterationCount, keyLength)
170 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
237 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
260 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
287 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
318 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
341 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
    [all...]
  /external/webkit/WebKit/chromium/src/
WebPasswordFormData.cpp 52 // Helper to determine which password is the main one, and which is
53 // an old password (e.g on a "make new password" form), if any.
55 HTMLInputElement** password,
59 ASSERT(password);
63 // Single password, easy.
64 *password = fields->passwords[0];
68 // Treat two identical passwords as a single password.
69 *password = fields->passwords[0];
71 // Assume first is old password, second is new (no choice but to guess)
    [all...]
  /external/wpa_supplicant/examples/
ieee8021x.conf 11 password="password"
  /external/wpa_supplicant_6/wpa_supplicant/examples/
ieee8021x.conf 11 password="password"
  /external/dropbear/
svr-authpasswd.c 25 /* Validates a user password */
35 /* Process a password auth request, sending success or failure messages as
43 char * testcrypt = NULL; /* crypt generated from the user's password sent */
44 unsigned char * password; local
51 /* get the shadow password if possible */
63 /* check for empty password - need to do this again here
64 * since the shadow password may differ to that tested
67 dropbear_log(LOG_WARNING, "user '%s' has blank password, rejected",
73 /* check if client wants to change password */
81 password = buf_getstring(ses.payload, &passwordlen)
    [all...]
cli-authpasswd.c 44 /* returns a statically allocated password from a helper app, or NULL
118 char* password = NULL; local
124 snprintf(prompt, sizeof(prompt), "%s@%s's password: ",
128 password = gui_getpass(prompt);
131 password = getpass_or_cancel(prompt);
146 buf_putstring(ses.writepayload, password, strlen(password));
149 m_burn(password, strlen(password));
  /libcore/luni/src/main/java/javax/security/auth/callback/
PasswordCallback.java 24 * Used in conjunction with a {@link CallbackHandler} to retrieve a password
79 * Sets the password. The {@link CallbackHandler} that performs the actual
80 * provisioning or input of the password needs to call this method to hand
81 * back the password to the security service that requested it.
83 * @param password
84 * the password. A copy of this is stored, so subsequent changes
87 public void setPassword(char[] password) {
88 if (password == null) {
89 this.inputPassword = password;
91 inputPassword = new char[password.length]
    [all...]
  /external/apache-http/src/org/apache/http/auth/
UsernamePasswordCredentials.java 38 * Username and password {@link Credentials}
51 private final String password; field in class:UsernamePasswordCredentials
54 * The constructor with the username and password combined string argument.
56 * @param usernamePassword the username:password formed string
62 throw new IllegalArgumentException("Username:password string may not be null");
67 this.password = usernamePassword.substring(atColon + 1);
70 this.password = null;
76 * The constructor with the username and password arguments.
79 * @param password the password
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_otp.c 39 const u8 *pos, *password; local
51 password = eap_get_config_otp(sm, &password_len);
52 if (password)
55 password = eap_get_config_password(sm, &password_len);
59 if (password == NULL) {
60 wpa_printf(MSG_INFO, "EAP-OTP: Password not configured");
76 wpabuf_put_data(resp, password, password_len);
78 password, password_len);
81 wpa_printf(MSG_DEBUG, "EAP-OTP: Forgetting used password");
mschapv2.c 43 const u8 *password, size_t password_len,
70 wpa_hexdump_key(MSG_DEBUG, "MSCHAPV2: password hash",
71 password, password_len);
74 password, nt_response);
76 password, peer_challenge, auth_challenge,
79 wpa_hexdump_ascii_key(MSG_DEBUG, "MSCHAPV2: password",
80 password, password_len);
83 password, password_len, nt_response);
84 generate_authenticator_response(password, password_len,
96 hash_nt_password_hash(password, password_hash_hash)
    [all...]
  /frameworks/base/keystore/java/android/security/
KeyStore.java 118 public boolean password(byte[] oldPassword, byte[] newPassword) { method in class:KeyStore
123 public boolean password(String oldPassword, String newPassword) { method in class:KeyStore
124 return password(getBytes(oldPassword), getBytes(newPassword));
127 public boolean password(byte[] password) { method in class:KeyStore
128 return password(password, password);
131 public boolean password(String password) { method in class:KeyStore
    [all...]
  /frameworks/base/packages/VpnServices/src/com/android/server/vpn/
L2tpService.java 28 protected void connect(String serverIp, String username, String password)
33 username, password);
PptpService.java 28 protected void connect(String serverIp, String username, String password)
31 getDaemons().startPptp(serverIp, username, password,
  /external/grub/util/
grub-md5-crypt 3 # Encrypt a password in MD5 format
35 Encrypt a password in MD5 format.
67 # Prompt to enter a password.
68 echo -n "Password: "
69 read -r password
73 echo -n "Retype password: "
80 if test "x$password" = x; then
81 echo "Empty password is not permitted."
85 if test "x$password" != "x$password2"; then
94 $password
    [all...]
grub-md5-crypt.in 3 # Encrypt a password in MD5 format
35 Encrypt a password in MD5 format.
67 # Prompt to enter a password.
68 echo -n "Password: "
69 read -r password
73 echo -n "Retype password: "
80 if test "x$password" = x; then
81 echo "Empty password is not permitted."
85 if test "x$password" != "x$password2"; then
94 $password
    [all...]
  /external/webkit/WebCore/platform/network/
Credential.cpp 44 Credential::Credential(const String& user, const String& password, CredentialPersistence persistence)
46 , m_password(password.length() ? password : "")
56 , m_password(original.password())
81 const String& Credential::password() const function in class:WebCore::Credential
155 if (a.password() != b.password())

Completed in 445 milliseconds

1 2 3 4 5 6 7 8 91011>>