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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Analysis/
default-diagnostic-visitors.c 8 int *password; // expected-note {{'password' declared without an initial value}} local
9 if (password == 0) { // expected-warning {{The left operand of '==' is a garbage value}} // expected-note {{The left operand of '==' is a garbage value}}
10 err = *password;
  /libcore/luni/src/main/java/javax/crypto/spec/
PBEKeySpec.java 25 * The key specification for a <i>password based encryption</i> key.
27 * Password based encryption is described in <a
32 private char[] password; field in class:PBEKeySpec
38 * Creates a new <code>PBEKeySpec</code> with the specified password.
40 * @param password
41 * the password.
43 public PBEKeySpec(char[] password) {
44 if (password == null) {
45 this.password = EmptyArray.CHAR;
47 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...]
  /external/bouncycastle/bcprov/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...]
  /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/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
PBEKeySpecTest.java 38 * PBEKeySpec(char[] password) method testing. Tests the behavior of
51 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
52 PBEKeySpec pbeks = new PBEKeySpec(password);
53 password[0] ++;
54 assertFalse("The change of password specified in the constructor "
56 password[0] == pbeks.getPassword()[0]);
60 * PBEKeySpec(char[] password, byte[] salt, int iterationCount, int
66 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
83 new PBEKeySpec(password, null, iterationCount, keyLength);
92 new PBEKeySpec(password, new byte [0], iterationCount, keyLength)
145 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
206 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
223 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
244 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
269 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
286 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
PBEKeySpecTest.java 38 * PBEKeySpec(char[] password) method testing. Tests the behavior of
51 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
52 PBEKeySpec pbeks = new PBEKeySpec(password);
53 password[0] ++;
54 assertFalse("The change of password specified in the constructor "
56 password[0] == pbeks.getPassword()[0]);
60 * PBEKeySpec(char[] password, byte[] salt, int iterationCount, int
66 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
83 new PBEKeySpec(password, null, iterationCount, keyLength);
92 new PBEKeySpec(password, new byte [0], iterationCount, keyLength)
145 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
206 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
223 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
244 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
269 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
286 char[] password = new char[] {'1', '2', '3', '4', '5'}; local
    [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/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
PasswordAuthenticationTest.java 31 char[] password = new char[] { 'd', 'r', 'o', 'w', 's', 's', 'a', 'p' }; local
33 PasswordAuthentication pa = new PasswordAuthentication(name, password);
36 assertTrue("Password was not cloned", returnedPassword != password);
38 returnedPassword.length == password.length);
39 for (int counter = password.length - 1; counter >= 0; counter--)
41 returnedPassword[counter] == password[counter]);
  /external/openssh/
auth2-passwd.c 52 char *password, *newpass; local
58 password = packet_get_string(&len);
60 /* discard new password from packet */
68 logit("password change not supported");
70 /* no password authentication in android */
71 else if (PRIVSEP(auth_password(authctxt, password)) == 1)
74 memset(password, 0, len);
75 xfree(password);
80 "password",
  /external/wpa_supplicant_8/hostapd/
nt_password_hash.c 2 * hostapd - Plaintext password to NtPasswordHash
19 char *password, buf[64], *pos; local
22 password = argv[1];
25 printf("Failed to read password\n");
37 password = buf;
40 if (nt_password_hash((u8 *) password, strlen(password), password_hash))
  /external/chromium/chrome/browser/sync/glue/
password_model_associator.cc 48 // We must not be holding a transaction when we interact with the password
55 LOG(ERROR) << "Could not get the password entries.";
66 LOG(ERROR) << "Server did not create the top-level password node. We "
80 const sync_pb::PasswordSpecificsData& password = local
82 DCHECK_EQ(tag, MakeTag(password));
86 if (MergePasswords(password, **ix, &new_password)) {
90 LOG(ERROR) << "Failed to edit password sync node.";
103 LOG(ERROR) << "Failed to create password sync node.";
124 const sync_pb::PasswordSpecificsData& password = local
126 std::string tag = MakeTag(password);
364 sync_pb::PasswordSpecificsData password; local
    [all...]
  /external/chromium/net/ftp/
ftp_auth_cache.cc 17 const string16& password)
20 password(password) {
38 const string16& password) {
45 entry->password = password;
47 entries_.push_front(Entry(origin, username, password));
56 const string16& password) {
59 it->password == password) {
    [all...]
ftp_auth_cache.h 31 const string16& password);
36 string16 password; member in struct:net::FtpAuthCache::Entry
46 // |password|). If there is already an entry for |origin|, it will be
49 const string16& password);
52 // |username| and |password|.
54 const string16& 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);
  /external/webkit/Source/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/smack/src/org/jivesoftware/smackx/bookmark/
BookmarkedConference.java 34 private String password; field in class:BookmarkedConference
42 String password)
48 this.password = password;
102 * Returns the password to use when joining this conference room. This is an optional
105 * @return the password to use when joining this conference room, null may be returned.
108 return password;
111 protected void setPassword(String password) {
112 this.password = password;
    [all...]
  /external/webkit/Source/WebCore/platform/network/soup/
SoupURIUtils.cpp 28 // does not add the password to the URL when calling
37 if (!soupURI->password)
40 url.setPass(String::fromUTF8(soupURI->password));
  /external/wpa_supplicant_8/wpa_supplicant/examples/
ieee8021x.conf 11 password="password"
  /external/chromium/chrome/browser/resources/options/
password_manager_list.css 7 button.password-button {
21 button.password-button:hover {
26 html[dir='ltr'] button.password-button {
30 html[dir='rtl'] button.password-button {
34 input[type="password"].inactive-password {
49 #saved-passwords-list .password {
54 #saved-passwords-list .password input[type="password"],
55 #saved-passwords-list .password input[type="text"]
    [all...]
  /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...]
  /external/smack/src/org/apache/harmony/javax/security/auth/callback/
PasswordCallback.java 26 * 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) {
90 if (password == null) {
91 this.inputPassword = password;
93 inputPassword = new char[password.length]
    [all...]
  /libcore/luni/src/main/java/javax/security/auth/callback/
PasswordCallback.java 24 * Used in conjunction with a {@link CallbackHandler} to retrieve a password
78 * Sets the password. The {@link CallbackHandler} that performs the actual
79 * provisioning or input of the password needs to call this method to hand
80 * back the password to the security service that requested it.
82 * @param password
83 * the password. A copy of this is stored, so subsequent changes
86 public void setPassword(char[] password) {
87 if (password == null) {
88 this.inputPassword = password;
90 inputPassword = new char[password.length]
    [all...]
  /external/smack/src/org/jivesoftware/smack/packet/
Authentication.java 32 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) {
82 this.password = password
    [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...]

Completed in 4189 milliseconds

1 2 3 4 5 6 7 8 91011>>