Home
last modified time | relevance | path

Searched refs:password (Results 1 – 25 of 50) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dhashlib.py163 def pbkdf2_hmac(hash_name, password, salt, iterations, dklen=None): argument
173 if not isinstance(password, (bytes, bytearray)):
174 password = bytes(buffer(password))
182 if len(password) > blocksize:
183 password = new(hash_name, password).digest()
184 password = password + b'\x00' * (blocksize - len(password))
185 inner.update(password.translate(_trans_36))
186 outer.update(password.translate(_trans_5C))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
Dregister.py76 self.password = config['password']
134 password = self.password
137 username = password = ''
160 while not password:
161 password = getpass.getpass('Password: ')
166 auth.add_password(self.realm, host, username, password)
178 self.distribution.password = password
190 self._store_pypirc(username, password)
Dupload.py33 self.password = ''
47 self.password = config['password']
53 if not self.password and self.distribution.password:
54 self.password = self.distribution.password
135 self.password)
/device/linaro/bootloader/edk2/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/
DPwdCredentialProvider.uni2 // Provides a password credential provider implementation
4 // This module provides a password credential provider implementation.
18 #string STR_MODULE_ABSTRACT #language en-US "Provides a password credential provider im…
20 #string STR_MODULE_DESCRIPTION #language en-US "This module provides a password credential…
DPwdCredentialProviderDxe.inf2 # Provides a password credential provider implementation
3 # This module provides a password credential provider implementation.
/device/google/cuttlefish/host/frontend/gcastv2/webrtc/
DSTUNMessage.cpp91 void STUNMessage::addMessageIntegrityAttribute(std::string_view password) { in addMessageIntegrityAttribute() argument
102 password.data(), in addMessageIntegrityAttribute()
103 password.size(), in addMessageIntegrityAttribute()
178 void STUNMessage::dump(std::optional<std::string_view> password) const { in dump()
249 } else if (password) { in dump()
250 auto success = verifyMessageIntegrity(offset + 20, *password); in dump()
279 size_t offset, std::string_view password) const { in verifyMessageIntegrity()
294 password.data(), in verifyMessageIntegrity()
295 password.size(), in verifyMessageIntegrity()
/device/google/cuttlefish/host/frontend/gcastv2/webrtc/include/webrtc/
DSTUNMessage.h37 void addMessageIntegrityAttribute(std::string_view password);
45 void dump(std::optional<std::string_view> password = std::nullopt) const;
54 bool verifyMessageIntegrity(size_t offset, std::string_view password) const;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dnetrc.py71 account = password = None
77 if password:
78 self.hosts[entryname] = (login, account, password)
91 password = lexer.get_token()
Dsmtplib.py529 def login(self, user, password): argument
551 def encode_cram_md5(challenge, user, password): argument
553 response = user + " " + hmac.HMAC(password, challenge).hexdigest()
556 def encode_plain(user, password): argument
557 return encode_base64("\0%s\0%s" % (user, password), eol="")
589 (code, resp) = self.docmd(encode_cram_md5(resp, user, password))
592 AUTH_PLAIN + " " + encode_plain(user, password))
598 (code, resp) = self.docmd(encode_base64(password, eol=""))
Dnntplib.py94 def __init__(self, host, port=NNTP_PORT, user=None, password=None, argument
144 password = auth[2]
151 if not password:
155 'authinfo pass '+password)
Durllib2.py695 user, password = splitpasswd(userinfo)
697 user = password = None
698 return scheme, user, password, hostport
716 proxy_type, user, password, hostport = _parse_proxy(proxy)
724 if user and password:
725 user_pass = '%s:%s' % (unquote(user), unquote(password))
810 user, password = HTTPPasswordMgr.find_user_password(self, realm,
813 return user, password
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformSetupDxe/
DSecurity.vfi80 password varid = Setup.AdminPassword,
89 password varid = Setup.UserPassword,
98 password varid = Setup.AdminPassword,
107 password varid = Setup.UserPassword,
/device/generic/goldfish/network/netmgr/commands/
Dwifi_command.cpp139 if (!ap.second.password.empty()) { in writeConfig()
143 fprintf(out.get(), "wpa_passphrase=%s\n", ap.second.password.c_str()); in writeConfig()
159 ap.password = arguments[1]; in onAdd()
161 ap.password.clear(); in onAdd()
Dwifi_command.h48 std::string password; member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
Dtest_upload.py92 self.assertEqual(cmd.password, None)
96 dist.password = 'xxx'
99 self.assertEqual(cmd.password, 'xxx')
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_urlparse.py54 self.assertEqual(result3.password, result.password)
78 self.assertEqual(result3.password, result.password)
393 self.assertEqual(p.password, None)
408 self.assertEqual(p.password, "Pass")
425 self.assertEqual(p.password, "Pass")
451 self.assertEqual(p.password, None)
459 self.assertEqual(p.password, None)
Dtest_urllib2.py429 def add_password(self, realm, uri, user, password): argument
433 self.password = password
437 return self.user, self.password
1177 user, password = "wile", "coyote"
1180 auth_handler.add_password(realm, request_url, user, password)
1184 self.assertEqual(password, password_manager.password)
1195 userpass = '%s:%s' % (user, password)
1203 password_manager.user = password_manager.password = None
Dtest_urllib2_localnet.py112 def _validate_auth(self, auth_dict, password, method, uri): argument
115 final_dict["password"] = password
164 password = self._users[ auth_dict["username"] ]
180 password,
Dtest_imaplib.py185 password = 'pass' variable in RemoteIMAPTest
201 rs = self.server.login(self.username, self.password)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
Dconfig.py42 def _store_pypirc(self, username, password): argument
47 f.write(DEFAULT_PYPIRC % (username, password))
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/DisplayEngineDxe/
DFormDisplayStr.uni48 #string PROMPT_FOR_PASSWORD #language en-US "Please type in your password"
50 #string PROMPT_FOR_NEW_PASSWORD #language en-US "Please type in your new password"
52 #string CONFIRM_PASSWORD #language en-US "Please confirm your new password"
56 #string PASSWORD_INVALID #language en-US "Incorrect password"
/device/linaro/bootloader/edk2/BaseTools/
Dbuilding-gcc.txt9 account with an empty password.
/device/linaro/bootloader/edk2/SecurityPkg/Library/TcgStorageCoreLib/
DTcgStorageCoreLib.inf4 # This module is used to provide API used by Opal password solution.
/device/linaro/bootloader/edk2/SecurityPkg/Library/TcgStorageOpalLib/
DTcgStorageOpalLib.inf4 # This module is used to provide API used by Opal password solution.
/device/generic/goldfish/
Dinit.goldfish.rc57 # setprop ro.config.hosted_account [email protected]:password
58 # setprop ro.config.google_account [email protected]:password

12