Home
last modified time | relevance | path

Searched refs:auth_str (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_urllib2_localnet.py148 def _create_auth_dict(self, auth_str): argument
149 first_space_index = auth_str.find(" ")
150 auth_str = auth_str[first_space_index+1:]
152 parts = auth_str.split(",")
/external/python/cpython3/Lib/test/
Dtest_urllib2_localnet.py107 def _create_auth_dict(self, auth_str): argument
108 first_space_index = auth_str.find(" ")
109 auth_str = auth_str[first_space_index+1:]
111 parts = auth_str.split(",")
/external/autotest/client/common_lib/cros/network/
Dxmlrpc_security_types.py604 auth_str = 'auth=' + self.inner_protocol[len(self.TTLS_PREFIX):]
605 ret.update({self.SERVICE_PROPERTY_INNER_EAP: auth_str})
/external/python/cpython3/Lib/urllib/
Drequest.py1003 auth_str = base64.standard_b64encode(credentials).decode()
1005 'Basic {}'.format(auth_str.strip()))