Home
last modified time | relevance | path

Searched refs:qop (Results 1 - 16 of 16) sorted by relevance

/third_party/ffmpeg/libavformat/
H A Dhttpauth.c57 } else if (!strncmp(key, "qop=", key_len)) { in handle_digest_params()
58 *dest = digest->qop; in handle_digest_params()
59 *dest_len = sizeof(digest->qop); in handle_digest_params()
77 static void choose_qop(char *qop, int size) in choose_qop() argument
79 char *ptr = strstr(qop, "auth"); in choose_qop()
83 (ptr == qop || av_isspace(ptr[-1]) || ptr[-1] == ',')) { in choose_qop()
84 av_strlcpy(qop, "auth", size); in choose_qop()
86 qop[0] = 0; in choose_qop()
110 choose_qop(state->digest_params.qop, in ff_http_auth_handle_header()
111 sizeof(state->digest_params.qop)); in ff_http_auth_handle_header()
[all...]
H A Dhttpauth.h38 char qop[30]; /**< Quality of protection, containing the one member
H A Drtmpproto.c1652 const char *qop = "auth"; in do_llnw_auth() local
1689 av_md5_update(md5, qop, strlen(qop)); in do_llnw_auth()
/third_party/curl/lib/vauth/
H A Ddigest.c228 /* Tokenise the list of qop values. Use a temporary clone of the buffer since in auth_digest_get_qop_values()
266 * qop [in/out] - The buffer where the qop-options will be stored.
267 * qlen [in] - The length of the qop buffer.
275 char *qop, size_t qlen) in auth_decode_digest_md5_message()
297 /* Retrieve qop-options string from the challenge */ in auth_decode_digest_md5_message()
298 if(!auth_digest_get_key_value(chlg, "qop=\"", qop, qlen, '\"')) in auth_decode_digest_md5_message()
357 char qop[] = DIGEST_QOP_VALUE_STRING_AUTH; in Curl_auth_create_digest_md5_message() local
375 /* Get the qop in Curl_auth_create_digest_md5_message()
271 auth_decode_digest_md5_message(const struct bufref *chlgref, char *nonce, size_t nlen, char *realm, size_t rlen, char *alg, size_t alen, char *qop, size_t qlen) auth_decode_digest_md5_message() argument
[all...]
H A Dkrb5_gssapi.c197 gss_qop_t qop = GSS_C_QOP_DEFAULT; in Curl_auth_create_gssapi_security_message() local
211 /* Decrypt the inbound challenge and obtain the qop */ in Curl_auth_create_gssapi_security_message()
213 &output_token, NULL, &qop); in Curl_auth_create_gssapi_security_message()
H A Dkrb5_sspi.c268 unsigned long qop = 0; in Curl_auth_create_gssapi_security_message() local
306 /* Decrypt the inbound challenge and obtain the qop */ in Curl_auth_create_gssapi_security_message()
307 status = s_pSecFn->DecryptMessage(krb5->context, &input_desc, 0, &qop); in Curl_auth_create_gssapi_security_message()
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
H A Ddigestauth.c138 * @param qop qop-value: "", "auth" or "auth-int"
141 * @param hentity H(entity body) if qop="auth-int"
149 const char *qop, in digest_calc_response()
165 if (0 == strcasecmp(qop, "auth-int")) in digest_calc_response()
182 if ('\0' != *qop) in digest_calc_response()
188 MD5Update (&md5, qop, strlen(qop)); in digest_calc_response()
573 char qop[15]; /* auth,auth-int */ in MHD_digest_auth_check() local
724 (0 == lookup_sub_value (qop, sizeo in MHD_digest_auth_check()
145 digest_calc_response(const char *ha1, const char *nonce, const char *noncecount, const char *cnonce, const char *qop, const char *method, const char *uri, const char *hentity, char *response) digest_calc_response() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_qir.c94 qir_get_op_name(enum qop qop) in qir_get_op_name() argument
96 if (qop < ARRAY_SIZE(qir_op_info) && qir_op_info[qop].name) in qir_get_op_name()
97 return qir_op_info[qop].name; in qir_get_op_name()
588 qir_inst(enum qop op, struct qreg dst, struct qreg src0, struct qreg src1) in qir_inst()
H A Dvc4_qir.h102 enum qop { enum
199 enum qop op;
525 struct qinst *qir_inst(enum qop op, struct qreg dst,
/third_party/mesa3d/src/nouveau/codegen/
H A Dnv50_ir_lowering_gm107.cpp227 int qop = 0, xid = 0; in handleDFDX() local
231 qop = QUADOP(SUB, SUBR, SUB, SUBR); in handleDFDX()
235 qop = QUADOP(SUB, SUB, SUBR, SUBR); in handleDFDX()
247 insn->subOp = qop; in handleDFDX()
H A Dnv50_ir_build_util.h83 Instruction *mkQuadop(uint8_t qop, Value *, uint8_t l, Value *, Value *);
H A Dnv50_ir_lowering_nv50.cpp916 const uint8_t qop = QUADOP(SUBR, SUBR, SUBR, SUBR); in handleTXB() local
920 bld.mkQuadop(qop, pred, l, bias, bias)->flagsDef = 0; in handleTXB()
973 const uint8_t qop = QUADOP(SUBR, SUBR, SUBR, SUBR); in handleTXL() local
976 bld.mkQuadop(qop, pred, l, lod, lod)->flagsDef = 0; in handleTXL()
/third_party/curl/lib/
H A Dsocks_sspi.c89 unsigned long qop; in Curl_SOCKS5_gssapi_negotiate() local
565 &qop); in Curl_SOCKS5_gssapi_negotiate()
H A Durldata.h362 char *qop;
/third_party/python/Lib/test/
H A Dtest_urllib2_localnet.py95 def set_qop(self, qop):
96 self._qop = qop
141 "%(cnonce)s:%(qop)s:%(HA2)s" % final_dict
151 'qop="%s",'
/third_party/python/Lib/urllib/
H A Drequest.py1089 # XXX qop="auth-int" supports is shaky
1150 qop = chal.get('qop')
1178 if qop is None:
1180 elif 'auth' in qop.split(','):
1192 raise URLError("qop '%s' is not supported." % qop)
1204 if qop:
1205 base += ', qop=auth, nc=%s, cnonce="%s"' % (ncvalue, cnonce)

Completed in 25 milliseconds