Searched defs:password (Results 1 - 25 of 419) sorted by relevance

1234567891011>>

/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/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/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...]
/external/chromium_org/third_party/WebKit/Source/platform/credentialmanager/
H A DPlatformLocalCredential.h17 static PlatformLocalCredential* create(const String& id, const String& name, const KURL& avatarURL, const String& password);
20 const String& password() const { return m_password; } function in class:blink::FINAL
23 PlatformLocalCredential(const String& id, const String& name, const KURL& avatarURL, const String& password);
H A DPlatformLocalCredential.cpp10 PlatformLocalCredential* PlatformLocalCredential::create(const String& id, const String& name, const KURL& avatarURL, const String& password) argument
12 return new PlatformLocalCredential(id, name, avatarURL, password);
15 PlatformLocalCredential::PlatformLocalCredential(const String& id, const String& name, const KURL& avatarURL, const String& password) argument
17 , m_password(password)
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/chromeos_login_ext/
H A Dmain.js15 'password': ''
/external/chromium_org/chrome/browser/chromeos/login/supervised/
H A Dsupervised_user_password_browsertest.cc76 // Supervised user signs in, get sync notification about password update, and
77 // schedules password migration.
87 base::DictionaryValue password; local
88 password.SetIntegerWithoutPathExpansion(
90 password.SetIntegerWithoutPathExpansion(kPasswordRevision, 2);
92 password.SetStringWithoutPathExpansion(kPasswordSignature, "signature");
93 password.SetStringWithoutPathExpansion(kEncryptedPassword,
94 "new-encrypted-password");
97 sync_id, supervised_users::kChromeOSPasswordData, password, true, false);
101 // Supervised user signs in for second time, and actual password migratio
151 base::DictionaryValue password; local
200 base::DictionaryValue password; local
241 base::DictionaryValue password; local
[all...]
H A Dsupervised_user_authentication_unittest.cc34 std::string password = "password"; local
44 Key key(password);
/external/chromium_org/chrome/browser/signin/
H A Dfake_signin_manager.h51 void set_password(const std::string& password) { password_ = password; } argument
53 void SignIn(const std::string& username, const std::string& password);
60 const std::string& password,
H A Dprofile_identity_provider.cc51 const std::string& password) {
48 GoogleSigninSucceeded( const std::string& account_id, const std::string& username, const std::string& password) argument
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dsingle_client_supervised_user_settings_sync_test.cc51 // ProfileSyncServiceHarness sets the password, which can't be empty.
52 std::string password = "password"; local
53 GetClient(i)->SetCredentials(username, password);
/external/chromium_org/components/os_crypt/
H A Die7_password_win.h20 // Encrypted data containing the username, password and some more undocumented
32 std::wstring password; member in struct:ie7_password::DecryptedCredentials
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebLocalCredential.cpp12 WebLocalCredential::WebLocalCredential(const WebString& id, const WebString& name, const WebURL& avatarURL, const WebString& password) argument
13 : WebCredential(PlatformLocalCredential::create(id, name, avatarURL, password))
22 WebString WebLocalCredential::password() const function in class:blink::WebLocalCredential
24 return static_cast<PlatformLocalCredential*>(m_platformCredential.get())->password();
/external/conscrypt/src/main/java/org/conscrypt/
H A DKeyManagerFactoryImpl.java43 //password
47 * @see KeyManagerFactorySpi#engineInit(KeyStore ks, char[] password)
50 protected void engineInit(KeyStore ks, char[] password) argument
55 if (password != null) {
56 pwd = password.clone();
/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/smack/src/org/jivesoftware/smack/
H A DUserAuthentication.java45 * @param cbh the CallbackHandler used to obtain authentication ID, password, or other
62 * @param password the password to send to the server.
67 String authenticate(String username, String password, String resource) throws argument
/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/apache-harmony/x-net/src/test/java/javax/net/ssl/
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 DUsernamePasswordCredentials.java38 * Username and password {@link Credentials}
56 private final String password; field in class:UsernamePasswordCredentials
59 * The constructor with the username and password combined string argument.
61 * @param usernamePassword the username:password formed string
67 throw new IllegalArgumentException("Username:password string may not be null");
72 this.password = usernamePassword.substring(atColon + 1);
75 this.password = null;
81 * The constructor with the username and password arguments.
84 * @param password the password
86 UsernamePasswordCredentials(String userName, String password) argument
[all...]
/external/apache-http/src/org/apache/http/impl/auth/
H A DNTLMEngine.java67 * @param password Password
76 String password,
74 generateType3Msg( String username, String password, String domain, String workstation, String challenge) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
H A DOpenSSLPBEParametersGenerator.java36 * @param password password to use.
40 byte[] password,
43 super.init(password, salt, 1);
47 * the derived key function, the ith hash of the password and the salt.
58 digest.update(password, 0, password.length);
83 * Generate a key parameter derived from the password, salt, and iteration
102 * the password, salt, and iteration count we are currently initialised
123 * Generate a key parameter for use with a MAC derived from the password,
39 init( byte[] password, byte[] salt) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/config/
H A DPKCS12StoreParameter.java15 public PKCS12StoreParameter(OutputStream out, char[] password) argument
17 this(out, password, false);
25 public PKCS12StoreParameter(OutputStream out, char[] password, boolean forDEREncoding) argument
27 this(out, new KeyStore.PasswordProtection(password), forDEREncoding);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/spec/
H A DPBKDF2KeySpec.java12 public PBKDF2KeySpec(char[] password, byte[] salt, int iterationCount, int keySize, AlgorithmIdentifier prf) argument
14 super(password, salt, iterationCount, keySize);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJDKPKCS12StoreParameter.java37 public void setPassword(char[] password) argument
39 this.protectionParameter = new KeyStore.PasswordProtection(password);
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dupdate_server.py40 'Update github username/password (empty to skip)? ')
42 password = getpass.getpass() variable
54 contents.replace('PASSWORD = None', 'PASSWORD = \'%s\'' % password)

Completed in 691 milliseconds

1234567891011>>