HomeSort by relevance Sort by last modified time
    Searched refs:password (Results 1 - 25 of 1113) 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...]
  /external/chromium_org/components/autofill/core/browser/
password_generator_unittest.cc 15 std::string password = pg1.Generate(); local
16 EXPECT_EQ(password.size(), 10u);
19 password = pg2.Generate();
20 EXPECT_EQ(password.size(),
24 password = pg3.Generate();
25 EXPECT_EQ(password.size(),
31 std::string password = pg.Generate(); local
35 for (size_t i = 0; i < password.size(); i++) {
36 if (isupper(password[i]))
38 else if (islower(password[i])
50 std::string password = pg.Generate(); local
    [all...]
password_generator.cc 26 // A helper function to get the length of the generated password from
27 // |max_length| retrieved from input password field.
35 // We want the password to have uppercase, lowercase, and at least one number.
36 bool VerifyPassword(const std::string& password) {
41 for (size_t i = 0; i < password.size(); ++i) {
42 if (password[i] >= kMinUpper && password[i] <= kMaxUpper)
44 if (password[i] >= kMinLower && password[i] <= kMaxLower)
46 if (password[i] >= kMinDigit && password[i] <= kMaxDigit
84 char password[255]; local
    [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/chromium_org/chrome/browser/resources/chromeos/login/
screen_confirm_password.css 6 #confirm-password {
12 #confirm-password .step-contents {
18 #confirm-password-main {
23 #confirm-password-title {
27 #confirm-password-input-container {
31 #confirm-password-error {
36 #confirm-password:not(.error) #confirm-password-error {
40 #confirm-password-divider {
45 #confirm-password-right
    [all...]
screen_password_changed.css 6 #password-changed {
13 #password-changed-contents {
18 #oobe.password-changed .step-controls {
23 #password-changed-title {
27 #password-changed-description,
28 #password-changed-more-info {
32 #old-password-block {
36 #old-password {
40 #password-changed-link-block {
44 #password-changed-contents a
    [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...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/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/chromium_org/chrome/browser/resources/options/
password_manager.css 6 #password-manager > div.content-area {
10 #password-search-column {
16 html[dir=rtl] #password-search-column {
21 #password-list-headers {
  /external/chromium_org/chrome/browser/signin/
local_auth.h 25 const std::string& password);
28 const std::string& password);
31 const std::string& password);
34 const std::string& password);
local_auth_unittest.cc 35 std::string password("Some Password");
36 EXPECT_FALSE(ValidateLocalAuthCredentials(prof, password));
38 SetLocalAuthCredentials(prof, password);
44 // - The plaintext version of the password is not mistakenly stored anywhere.
47 EXPECT_EQ(passhash.find(password), std::string::npos);
52 EXPECT_EQ(decodedhash.find(password), std::string::npos);
54 EXPECT_TRUE(ValidateLocalAuthCredentials(prof, password));
55 EXPECT_FALSE(ValidateLocalAuthCredentials(prof, password + "1"));
57 SetLocalAuthCredentials(prof, password); // makes different sal
    [all...]
  /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_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
RTCICEServer.h 33 // The server URI, username, and password.
36 @property(nonatomic, copy, readonly) NSString* password; variable
38 // Initializer for RTCICEServer taking uri, username, and password.
41 password:(NSString*)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/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCICEServer.mm 38 @synthesize password = _password;
42 password:(NSString*)password {
43 if (!URI || !username || !password) {
51 _password = [password copy];
60 self.password];
71 iceServer.password = [self.password UTF8String];
  /external/lzma/CPP/7zip/UI/Console/
OpenCallbackConsole.cpp 29 HRESULT COpenCallbackConsole::Open_CryptoGetTextPassword(BSTR *password)
35 Password = GetPassword(OutStream);
38 return StringToBstr(Password, password);
41 HRESULT COpenCallbackConsole::Open_GetPasswordIfAny(UString &password)
44 password = Password;
  /external/chromium_org/components/data_reduction_proxy/browser/
data_reduction_proxy_auth_request_handler_unittest.cc 79 // Checks that |PROCEED| was returned with expected user and password.
83 const base::string16& password) {
89 EXPECT_EQ(expected_password, password);
96 const base::string16& password) {
100 EXPECT_EQ(base::string16(), password); local
107 const base::string16& password) {
111 EXPECT_EQ(base::string16(), password); local
127 base::string16 user, password; local
129 handler.TryHandleAuthentication(auth_info.get(), &user, &password);
130 ExpectProceed(result, user, password);
159 base::string16 user, password; local
    [all...]
  /external/chromium_org/chrome/browser/resources/net_internals/
chromeos_view.css 6 #chromeos-view-password-div,
  /external/chromium_org/third_party/WebKit/ManualTests/blackberry/
http-auth-challenge.php 8 $username = $password = "aaaa";
10 if ($_SERVER['PHP_AUTH_USER'] == $username && $_SERVER['PHP_AUTH_PW'] == $password){
http-auth-private-mode-changed.php 2 $username = $password = "aaaa";
4 if ($_SERVER['PHP_AUTH_USER'] == $username && $_SERVER['PHP_AUTH_PW'] == $password){
8 echo '3. There should be a dialog for you to input username and password again.<br>';

Completed in 2846 milliseconds

1 2 3 4 5 6 7 8 91011>>