Home
last modified time | relevance | path

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

/third_party/python/Lib/test/
Dtest_urllib2_localnet.py108 def _create_auth_dict(self, auth_str): argument
109 first_space_index = auth_str.find(" ")
110 auth_str = auth_str[first_space_index+1:]
112 parts = auth_str.split(",")
/third_party/mbedtls/programs/ssl/
Dssl_server2.c731 char *crt_file, *key_file, *ca_file, *auth_str; in sni_parse() local
755 GET_ITEM( auth_str ); in sni_parse()
792 if( strcmp( auth_str, "-" ) != 0 ) in sni_parse()
794 if( ( new->authmode = get_auth_mode( auth_str ) ) < 0 ) in sni_parse()
/third_party/python/Lib/urllib/
Drequest.py1032 auth_str = base64.standard_b64encode(credentials).decode()
1034 'Basic {}'.format(auth_str.strip()))