Searched defs:alg (Results 1 - 4 of 4) sorted by relevance

/httpd/modules/lua/
H A Dlua_passwd.h74 int alg; member in struct:passwd_ctx
/httpd/support/
H A Dpasswd_common.h81 int alg; member in struct:passwd_ctx
/httpd/modules/aaa/
H A Dmod_auth_basic.c184 const char *alg)
188 if (strcasecmp(alg, "Off") && strcasecmp(alg, "MD5")) {
191 "AuthBasicUseDigestAlgorithm: ", alg, NULL);
194 conf->use_digest_algorithm = apr_pstrdup(cmd->pool, alg);
183 set_use_digest_algorithm(cmd_parms *cmd, void *config, const char *alg) argument
H A Dmod_auth_digest.c582 static const char *set_algorithm(cmd_parms *cmd, void *config, const char *alg) argument
584 if (!strcasecmp(alg, "MD5-sess")) {
588 else if (strcasecmp(alg, "MD5")) {
589 return apr_pstrcat(cmd->pool, "Invalid algorithm in AuthDigestAlgorithm: ", alg, NULL);
592 ((digest_config_rec *) config)->algorithm = alg;

Completed in 956 milliseconds