diff options
Diffstat (limited to 'src/include/microhttpd.h')
-rw-r--r-- | src/include/microhttpd.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h index d3765b6c..b2356e5a 100644 --- a/src/include/microhttpd.h +++ b/src/include/microhttpd.h | |||
@@ -5088,7 +5088,7 @@ enum MHD_DigestAuthResult | |||
5088 | * returned; | 5088 | * returned; |
5089 | * zero for no limit | 5089 | * zero for no limit |
5090 | * @param mqop the QOP to use | 5090 | * @param mqop the QOP to use |
5091 | * @param malgo3 digest algorithms allowed to use, fail if algorithm specified | 5091 | * @param malgo3 digest algorithms allowed to use, fail if algorithm used |
5092 | * by the client is not allowed by this parameter | 5092 | * by the client is not allowed by this parameter |
5093 | * @return #MHD_DAUTH_OK if authenticated, | 5093 | * @return #MHD_DAUTH_OK if authenticated, |
5094 | * the error code otherwise | 5094 | * the error code otherwise |
@@ -5133,7 +5133,7 @@ MHD_digest_auth_check3 (struct MHD_Connection *connection, | |||
5133 | * returned; | 5133 | * returned; |
5134 | * zero for no limit | 5134 | * zero for no limit |
5135 | * @param mqop the QOP to use | 5135 | * @param mqop the QOP to use |
5136 | * @param malgo3 digest algorithms allowed to use, fail if algorithm specified | 5136 | * @param malgo3 digest algorithms allowed to use, fail if algorithm used |
5137 | * by the client is not allowed by this parameter; | 5137 | * by the client is not allowed by this parameter; |
5138 | * both MD5-based and SHA-256-based algorithms cannot be used at | 5138 | * both MD5-based and SHA-256-based algorithms cannot be used at |
5139 | * the same time for this function as @a userdigest_size must | 5139 | * the same time for this function as @a userdigest_size must |
@@ -5193,8 +5193,9 @@ MHD_digest_auth_check_digest3 (struct MHD_Connection *connection, | |||
5193 | * to retry immediately with the new nonce and the same | 5193 | * to retry immediately with the new nonce and the same |
5194 | * credentials, without asking user for the new password | 5194 | * credentials, without asking user for the new password |
5195 | * @param mqop the QOP to use | 5195 | * @param mqop the QOP to use |
5196 | * @param malgo3 digest algorithm to use, if several algorithms are specified | 5196 | * @param malgo3 digest algorithm to use, MHD selects; if several algorithms |
5197 | * then MD5 is used (if allowed) | 5197 | * are allowed then MD5 is preferred (currently, may be changed |
5198 | * in next versions) | ||
5198 | * @param userhash_support if set to non-zero value (#MHD_YES) then support of | 5199 | * @param userhash_support if set to non-zero value (#MHD_YES) then support of |
5199 | * userhash is indicated, the client may provide | 5200 | * userhash is indicated, the client may provide |
5200 | * hash("username:realm") instead of username in | 5201 | * hash("username:realm") instead of username in |