Searched refs:password (Results 1 - 25 of 826) sorted by relevance

1234567891011>>

/external/clang/test/Analysis/
H A Ddefault-diagnostic-visitors.c8 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;
/external/chromium_org/third_party/WebKit/ManualTests/blackberry/
H A Dhttp-auth-private-mode-changed.php2 $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>';
H A Dhttp-auth-challenge.php8 $username = $password = "aaaa";
10 if ($_SERVER['PHP_AUTH_USER'] == $username && $_SERVER['PHP_AUTH_PW'] == $password){
/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/components/autofill/core/browser/
H A Dpassword_generator_unittest.cc15 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[
50 std::string password = pg.Generate(); local
[all...]
H A Dpassword_generator.cc26 // 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) { argument
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[
56 ForceFixPassword(std::string* password) argument
84 char password[255]; local
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Dscreen_confirm_password.css6 #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
[all...]
H A Dscreen_password_changed.css6 #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
[all...]
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
H A DPBEKeySpecTest.java38 * PBEKeySpec(char[] password) method testing. Tests the behavior of
51 char[] password = new char[] { '1', '2', '3', '4', '5' };
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' };
83 new PBEKeySpec(password, null, iterationCount, keyLength);
92 new PBEKeySpec(password, ne
[all...]
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DUserInfo.java51 /** 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/chromium_org/chrome/browser/resources/options/
H A Dpassword_manager.css6 #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/
H A Dlocal_auth.h25 const std::string& password);
28 const std::string& password);
31 const std::string& password);
34 const std::string& password);
H A Dlocal_auth_unittest.cc35 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 salt
/external/wpa_supplicant_8/hostapd/
H A Dnt_password_hash.c2 * 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/tlslite/tlslite/integration/
H A Dclienthelper.py19 username=None, password=None,
27 - username, password (SRP)
49 'password' argument.
51 @type password: str
52 @param password: SRP password for mutual authentication.
74 self.password = None
81 if username and password and not \
84 self.password = password
[all...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
H A DRTCICEServer.h33 // 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;
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
H A DRTCICEServer.mm38 @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/
H A DOpenCallbackConsole.cpp29 HRESULT COpenCallbackConsole::Open_CryptoGetTextPassword(BSTR *password) argument
38 return StringToBstr(Password, password);
41 HRESULT COpenCallbackConsole::Open_GetPasswordIfAny(UString &password) argument
44 password = Password;
/external/chromium_org/components/data_reduction_proxy/browser/
H A Ddata_reduction_proxy_auth_request_handler_unittest.cc79 // 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);
80 ExpectProceed( DataReductionProxyAuthRequestHandler::TryHandleResult result, const base::string16& user, const base::string16& password) argument
93 ExpectCancel( DataReductionProxyAuthRequestHandler::TryHandleResult result, const base::string16& user, const base::string16& password) argument
104 ExpectIgnore( DataReductionProxyAuthRequestHandler::TryHandleResult result, const base::string16& user, const base::string16& password) argument
159 base::string16 user, password; local
[all...]
/external/chromium_org/chrome/browser/resources/gaia_auth/
H A Doffline.js15 $('password-label').textContent =
20 $('empty-password-alert').textContent =
29 form.password.classList.remove('field-error');
30 form.password.classList.remove('form-error');
35 } else if (form.password.value == '') {
36 form.password.classList.add('field-error');
37 form.password.focus();
42 'password': form.password.value
54 form.password
[all...]
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dchromeos_view.css6 #chromeos-view-password-div,
/external/lzma/CPP/7zip/
H A DIPassword.h15 STDMETHOD(CryptoGetTextPassword)(BSTR *password) PURE;
20 STDMETHOD(CryptoGetTextPassword2)(Int32 *passwordIsDefined, BSTR *password) PURE;
/external/smack/src/org/jivesoftware/smackx/bookmark/
H A DBookmarkedConference.java34 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) { argument
112 this.password = password;
41 BookmarkedConference(String name, String jid, boolean autoJoin, String nickname, String password) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/examples/
H A Dieee8021x.conf11 password="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...]

Completed in 812 milliseconds

1234567891011>>