Home
last modified time | relevance | path

Searched refs:encoded_auth (Results 1 – 7 of 7) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/ios/web/public/test/http_server/
H A Dhttp_auth_response_provider.mm51 std::string encoded_auth;
52 base::Base64Encode(auth, &encoded_auth);
53 return header == base::StringPrintf("Basic %s", encoded_auth.c_str());
/dports/textproc/py-asciinema/asciinema-2.0.2/asciinema/
H A Durllib_http_adapter.py70 encoded_auth = base64.encodebytes(auth.encode('utf-8'))[:-1]
71 headers["Authorization"] = b"Basic " + encoded_auth
/dports/sysutils/py-docker/docker-5.0.3/tests/unit/
H A Dapi_image_test.py253 encoded_auth = auth.encode_header(auth_config)
267 'X-Registry-Auth': encoded_auth},
/dports/lang/spidermonkey60/firefox-60.9.0/servo/python/servo/
H A Dtesting_commands.py471 encoded_auth = None
474 encoded_auth = base64.encodestring(file.read().strip()).replace('\n', '')
503 if encoded_auth:
504 request.add_header("Authorization", "Basic %s" % encoded_auth)
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/machine/machine-7b7a141da844/vendor/github.com/samalba/dockerclient/
H A Ddockerclient.go204 encoded_auth, err := auth.encode()
208 headers["X-Registry-Auth"] = encoded_auth
616 encoded_auth, err := auth.encode()
620 req.Header.Add("X-Registry-Auth", encoded_auth)
/dports/sysutils/docker-machine/machine-0.16.2/vendor/github.com/samalba/dockerclient/
H A Ddockerclient.go204 encoded_auth, err := auth.encode()
208 headers["X-Registry-Auth"] = encoded_auth
616 encoded_auth, err := auth.encode()
620 req.Header.Add("X-Registry-Auth", encoded_auth)
/dports/graphics/tgif/tgif-QPL-4.2.5/
H A Dremote.c1066 char *scheme=NULL, *realm=NULL, *encoded_auth=NULL; local
1085 if ((encoded_auth=FindAuthorization(host, port, scheme, realm)) != NULL) {
1092 SetAuthorization(host, port, scheme, realm, encoded_auth);
1141 if ((encoded_auth=Base64Encode(tmp_auth)) == NULL) FailAllocMessage();
1143 if (!SetAuthorization(host, port, scheme, realm, encoded_auth)) {
1151 SetAuthorization(host, port, scheme, realm, encoded_auth);
1158 free(encoded_auth);