Home
last modified time | relevance | path

Searched refs:www_authenticate (Results 1 – 25 of 235) sorted by relevance

12345678910

/dports/net/libosip2/libosip2-5.3.0/src/osipparser2/
H A Dosip_www_authenticate.c451 *dest = www_authenticate; in osip_message_get_www_authenticate()
457 return www_authenticate->auth_type; in osip_www_authenticate_get_auth_type()
465 return www_authenticate->realm; in osip_www_authenticate_get_realm()
473 return www_authenticate->domain; in osip_www_authenticate_get_domain()
481 return www_authenticate->nonce; in osip_www_authenticate_get_nonce()
489 return www_authenticate->stale; in osip_www_authenticate_get_stale()
497 return www_authenticate->opaque; in osip_www_authenticate_get_opaque()
505 return www_authenticate->algorithm; in osip_www_authenticate_get_algorithm()
521 return www_authenticate->version; in osip_www_authenticate_get_version()
663 if (www_authenticate == NULL) in osip_www_authenticate_free()
[all …]
/dports/print/cups/cups-2.3.3op2/cups/
H A Dauth.c524 while (*www_authenticate) in cups_auth_find()
531 while (isspace(*www_authenticate & 255) || *www_authenticate == ',') in cups_auth_find()
532 www_authenticate ++; in cups_auth_find()
539 …ncmp(www_authenticate, scheme, schemelen) && (isspace(www_authenticate[schemelen] & 255) || www_au… in cups_auth_find()
554 while (!isspace(*www_authenticate & 255) && *www_authenticate) in cups_auth_find()
563 while (*www_authenticate && *www_authenticate != '\"') in cups_auth_find()
569 www_authenticate ++; in cups_auth_find()
713 while (isspace(*www_authenticate & 255) || *www_authenticate == ',') in cups_auth_scheme()
714 www_authenticate ++; in cups_auth_scheme()
720 …me, start = www_authenticate, param = 0; *www_authenticate && *www_authenticate != ',' && !isspace… in cups_auth_scheme()
[all …]
/dports/net/py-msrplib/python-msrplib-0.20.0/msrplib/
H A Ddigest.py67 www_authenticate = {}
68 www_authenticate["realm"] = realm
69 www_authenticate["qop"] = "auth"
71 www_authenticate["nonce"] = b64encode(nonce)
73 www_authenticate["opaque"] = opaque.hexdigest()
74 return www_authenticate
/dports/net/belle-sip/belle-sip-1.6.3-0/tester/
H A Dauth_helper_tester.c33 …belle_sip_header_www_authenticate_t* www_authenticate=belle_sip_header_www_authenticate_parse(l_ra… in test_authentication() local
34 …ader_authorization_t* authorization = belle_sip_auth_helper_create_authorization(www_authenticate); in test_authentication()
39 belle_sip_object_unref(www_authenticate); in test_authentication()
48 …belle_sip_header_www_authenticate_t* www_authenticate=belle_sip_header_www_authenticate_parse(l_ra… in test_authentication_qop_auth() local
49 …ader_authorization_t* authorization = belle_sip_auth_helper_create_authorization(www_authenticate); in test_authentication_qop_auth()
59 belle_sip_object_unref(www_authenticate); in test_authentication_qop_auth()
/dports/www/p5-HTTP-Message/HTTP-Message-6.35/t/
H A Dheaders-auth.t17 my %auth = $res->www_authenticate;
24 $a = $res->www_authenticate;
27 $res->www_authenticate("Basic realm=foo1");
30 $res->www_authenticate(Basic => {realm => "foo2"});
33 $res->www_authenticate(Basic => [realm => "foo3", foo=>33],
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/werkzeug/
H A Dexceptions.py288 def __init__(self, description=None, response=None, www_authenticate=None):
291 if www_authenticate is not None:
292 if not isinstance(www_authenticate, (tuple, list)):
293 www_authenticate = (www_authenticate,)
295 self.www_authenticate = www_authenticate
299 if self.www_authenticate:
301 ("WWW-Authenticate", ", ".join([str(x) for x in self.www_authenticate]))
/dports/www/moinmoin/moin-1.9.11/MoinMoin/support/werkzeug/
H A Dexceptions.py289 def __init__(self, description=None, response=None, www_authenticate=None): argument
292 if www_authenticate is not None:
293 if not isinstance(www_authenticate, (tuple, list)):
294 www_authenticate = (www_authenticate,)
296 self.www_authenticate = www_authenticate
300 if self.www_authenticate:
302 ("WWW-Authenticate", ", ".join([str(x) for x in self.www_authenticate]))
/dports/security/modsecurity3-nginx/nginx-1.20.0/src/http/modules/
H A Dngx_http_auth_basic_module.c323 r->headers_out.www_authenticate = ngx_list_push(&r->headers_out.headers); in ngx_http_auth_basic_set_realm()
324 if (r->headers_out.www_authenticate == NULL) { in ngx_http_auth_basic_set_realm()
332 r->headers_out.www_authenticate->hash = 0; in ngx_http_auth_basic_set_realm()
333 r->headers_out.www_authenticate = NULL; in ngx_http_auth_basic_set_realm()
341 r->headers_out.www_authenticate->hash = 1; in ngx_http_auth_basic_set_realm()
342 ngx_str_set(&r->headers_out.www_authenticate->key, "WWW-Authenticate"); in ngx_http_auth_basic_set_realm()
343 r->headers_out.www_authenticate->value.data = basic; in ngx_http_auth_basic_set_realm()
344 r->headers_out.www_authenticate->value.len = len; in ngx_http_auth_basic_set_realm()
/dports/www/nginx-naxsi/nginx-1.20.2/src/http/modules/
H A Dngx_http_auth_basic_module.c323 r->headers_out.www_authenticate = ngx_list_push(&r->headers_out.headers); in ngx_http_auth_basic_set_realm()
324 if (r->headers_out.www_authenticate == NULL) { in ngx_http_auth_basic_set_realm()
332 r->headers_out.www_authenticate->hash = 0; in ngx_http_auth_basic_set_realm()
333 r->headers_out.www_authenticate = NULL; in ngx_http_auth_basic_set_realm()
341 r->headers_out.www_authenticate->hash = 1; in ngx_http_auth_basic_set_realm()
342 ngx_str_set(&r->headers_out.www_authenticate->key, "WWW-Authenticate"); in ngx_http_auth_basic_set_realm()
343 r->headers_out.www_authenticate->value.data = basic; in ngx_http_auth_basic_set_realm()
344 r->headers_out.www_authenticate->value.len = len; in ngx_http_auth_basic_set_realm()
/dports/www/nginx-full/nginx-1.20.2/src/http/modules/
H A Dngx_http_auth_basic_module.c323 r->headers_out.www_authenticate = ngx_list_push(&r->headers_out.headers); in ngx_http_auth_basic_set_realm()
324 if (r->headers_out.www_authenticate == NULL) { in ngx_http_auth_basic_set_realm()
332 r->headers_out.www_authenticate->hash = 0; in ngx_http_auth_basic_set_realm()
333 r->headers_out.www_authenticate = NULL; in ngx_http_auth_basic_set_realm()
341 r->headers_out.www_authenticate->hash = 1; in ngx_http_auth_basic_set_realm()
342 ngx_str_set(&r->headers_out.www_authenticate->key, "WWW-Authenticate"); in ngx_http_auth_basic_set_realm()
343 r->headers_out.www_authenticate->value.data = basic; in ngx_http_auth_basic_set_realm()
344 r->headers_out.www_authenticate->value.len = len; in ngx_http_auth_basic_set_realm()
/dports/www/nginx-lite/nginx-1.20.2/src/http/modules/
H A Dngx_http_auth_basic_module.c323 r->headers_out.www_authenticate = ngx_list_push(&r->headers_out.headers); in ngx_http_auth_basic_set_realm()
324 if (r->headers_out.www_authenticate == NULL) { in ngx_http_auth_basic_set_realm()
332 r->headers_out.www_authenticate->hash = 0; in ngx_http_auth_basic_set_realm()
333 r->headers_out.www_authenticate = NULL; in ngx_http_auth_basic_set_realm()
341 r->headers_out.www_authenticate->hash = 1; in ngx_http_auth_basic_set_realm()
342 ngx_str_set(&r->headers_out.www_authenticate->key, "WWW-Authenticate"); in ngx_http_auth_basic_set_realm()
343 r->headers_out.www_authenticate->value.data = basic; in ngx_http_auth_basic_set_realm()
344 r->headers_out.www_authenticate->value.len = len; in ngx_http_auth_basic_set_realm()
/dports/www/nginx/nginx-1.20.2/src/http/modules/
H A Dngx_http_auth_basic_module.c323 r->headers_out.www_authenticate = ngx_list_push(&r->headers_out.headers); in ngx_http_auth_basic_set_realm()
324 if (r->headers_out.www_authenticate == NULL) { in ngx_http_auth_basic_set_realm()
332 r->headers_out.www_authenticate->hash = 0; in ngx_http_auth_basic_set_realm()
333 r->headers_out.www_authenticate = NULL; in ngx_http_auth_basic_set_realm()
341 r->headers_out.www_authenticate->hash = 1; in ngx_http_auth_basic_set_realm()
342 ngx_str_set(&r->headers_out.www_authenticate->key, "WWW-Authenticate"); in ngx_http_auth_basic_set_realm()
343 r->headers_out.www_authenticate->value.data = basic; in ngx_http_auth_basic_set_realm()
344 r->headers_out.www_authenticate->value.len = len; in ngx_http_auth_basic_set_realm()
/dports/www/nginx-devel/nginx-1.21.5/src/http/modules/
H A Dngx_http_auth_basic_module.c323 r->headers_out.www_authenticate = ngx_list_push(&r->headers_out.headers); in ngx_http_auth_basic_set_realm()
324 if (r->headers_out.www_authenticate == NULL) { in ngx_http_auth_basic_set_realm()
332 r->headers_out.www_authenticate->hash = 0; in ngx_http_auth_basic_set_realm()
333 r->headers_out.www_authenticate = NULL; in ngx_http_auth_basic_set_realm()
341 r->headers_out.www_authenticate->hash = 1; in ngx_http_auth_basic_set_realm()
342 ngx_str_set(&r->headers_out.www_authenticate->key, "WWW-Authenticate"); in ngx_http_auth_basic_set_realm()
343 r->headers_out.www_authenticate->value.data = basic; in ngx_http_auth_basic_set_realm()
344 r->headers_out.www_authenticate->value.len = len; in ngx_http_auth_basic_set_realm()
/dports/www/nginx-full/spnego-http-auth-nginx-module-72c8ee0/
H A Dngx_http_auth_spnego_module.c335 r->headers_out.www_authenticate = in ngx_http_auth_spnego_headers_basic_only()
337 if (NULL == r->headers_out.www_authenticate) { in ngx_http_auth_spnego_headers_basic_only()
341 r->headers_out.www_authenticate->hash = 1; in ngx_http_auth_spnego_headers_basic_only()
344 r->headers_out.www_authenticate->value.len = value.len; in ngx_http_auth_spnego_headers_basic_only()
374 r->headers_out.www_authenticate = in ngx_http_auth_spnego_headers()
376 if (NULL == r->headers_out.www_authenticate) { in ngx_http_auth_spnego_headers()
380 r->headers_out.www_authenticate->hash = 1; in ngx_http_auth_spnego_headers()
383 r->headers_out.www_authenticate->value.len = value.len; in ngx_http_auth_spnego_headers()
395 r->headers_out.www_authenticate = in ngx_http_auth_spnego_headers()
397 if (NULL == r->headers_out.www_authenticate) { in ngx_http_auth_spnego_headers()
[all …]
/dports/net/belle-sip/belle-sip-1.6.3-0/include/belle-sip/
H A Dheaders.h515 …p_header_www_authenticate_t* belle_sip_header_www_authenticate_parse(const char* www_authenticate);
516 …eader_www_authenticate_get_algorithm(const belle_sip_header_www_authenticate_t* www_authenticate );
517 …sip_header_www_authenticate_get_nonce(const belle_sip_header_www_authenticate_t* www_authenticate);
518 …ip_header_www_authenticate_get_opaque(const belle_sip_header_www_authenticate_t* www_authenticate);
521 …sip_header_www_authenticate_get_realm(const belle_sip_header_www_authenticate_t* www_authenticate);
522 …ip_header_www_authenticate_get_scheme(const belle_sip_header_www_authenticate_t* www_authenticate);
523 …ip_header_www_authenticate_get_domain(const belle_sip_header_www_authenticate_t* www_authenticate);
524 …_sip_header_www_authenticate_is_stale(const belle_sip_header_www_authenticate_t* www_authenticate);
526 …der_www_authenticate_set_nonce(belle_sip_header_www_authenticate_t* www_authenticate, const char* …
530 …der_www_authenticate_set_realm(belle_sip_header_www_authenticate_t* www_authenticate, const char* …
[all …]
/dports/security/nmap/nmap-7.91/scripts/
H A Dhttp-auth.nse70 local www_authenticate
83 www_authenticate = answer.header["www-authenticate"]
84 if not www_authenticate then
88 challenges = http.parse_www_authenticate(www_authenticate)
91 table.insert( result, ("WWW-Authenticate: %s"):format(www_authenticate) )
H A Dajp-auth.nse49 local www_authenticate = answer.headers["www-authenticate"]
50 if not www_authenticate then
55 local challenges = http.parse_www_authenticate(www_authenticate)
58 table.insert( result, ("WWW-Authenticate: %s"):format(www_authenticate) )
H A Dhttp-vuln-cve2017-5689.nse113 local www_authenticate = http.parse_www_authenticate(response.header['www-authenticate'])
114 …if www_authenticate[1]['params'] and www_authenticate[1]['params']['realm'] and www_authenticate[1…
116 … "cnonce=\"%s\", nc=1, qop=\"auth\", response=\"\"", www_authenticate[1]['params']['realm'],
117 www_authenticate[1]['params']['nonce'], rand.random_alpha(10))
/dports/www/miniserve/miniserve-0.18.0/cargo-crates/actix-web-httpauth-0.6.0-beta.2/src/extractors/
H A Derrors.rs7 use crate::headers::www_authenticate::Challenge;
8 use crate::headers::www_authenticate::WwwAuthenticate;
69 use crate::headers::www_authenticate::basic::Basic;
/dports/www/py-werkzeug/Werkzeug-2.0.2/src/werkzeug/
H A Dexceptions.py361 www_authenticate: t.Optional[
369 if isinstance(www_authenticate, WWWAuthenticate):
370 www_authenticate = (www_authenticate,)
372 self.www_authenticate = www_authenticate
380 if self.www_authenticate:
381 headers.extend(("WWW-Authenticate", str(x)) for x in self.www_authenticate)
/dports/www/firefox/firefox-99.0/third_party/python/mohawk/mohawk/
H A Dexc.py78 www_authenticate = None variable in TokenExpired
82 self.www_authenticate = kw.pop('www_authenticate')
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/python/mohawk/mohawk/
H A Dexc.py78 www_authenticate = None variable in TokenExpired
82 self.www_authenticate = kw.pop('www_authenticate')
/dports/www/firefox-esr/firefox-91.8.0/third_party/python/mohawk/mohawk/
H A Dexc.py78 www_authenticate = None variable in TokenExpired
82 self.www_authenticate = kw.pop('www_authenticate')
/dports/lang/spidermonkey60/firefox-60.9.0/third_party/python/mohawk/mohawk/
H A Dexc.py78 www_authenticate = None variable in TokenExpired
82 self.www_authenticate = kw.pop('www_authenticate')
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/python/mohawk/mohawk/
H A Dexc.py78 www_authenticate = None variable in TokenExpired
82 self.www_authenticate = kw.pop('www_authenticate')

12345678910