Home | History | Annotate | Download | only in vauth

Lines Matching defs:algorithm

260  * alg     [in/out] - The buffer where the algorithm will be stored.
261 * alen [in] - The length of the algorithm buffer.
303 /* Retrieve algorithm string from the challenge */
304 if(!auth_digest_get_key_value((char *) chlg, "algorithm=", alg, alen, ',')) {
370 char algorithm[64];
382 algorithm, sizeof(algorithm),
388 if(strcmp(algorithm, "md5-sess") != 0)
606 else if(strcasecompare(value, "algorithm")) {
607 free(digest->algorithm);
608 digest->algorithm = strdup(content);
609 if(!digest->algorithm)
735 If the algorithm is "MD5" or unspecified (which then defaults to MD5):
739 If the algorithm is "MD5-sess" then:
841 characters. algorithm and qop with standard values only contain web-safe
898 if(digest->algorithm) {
899 /* Append the algorithm */
900 tmp = aprintf("%s, algorithm=\"%s\"", response, digest->algorithm);
994 Curl_safefree(digest->algorithm);
997 digest->algo = CURLDIGESTALGO_MD5; /* default algorithm */