Lines Matching defs:hash
524 const char *hash = NULL;
529 hash = ap_md5(r->pool,
536 ap_session_set_fn(r, z, apr_pstrcat(r->pool, authname, "-" MOD_AUTH_FORM_HASH, NULL), hash);
547 const char **user, const char **pw, const char **hash)
560 if (hash) {
561 ap_session_get_fn(r, z, apr_pstrcat(r->pool, authname, "-" MOD_AUTH_FORM_HASH, NULL), hash);
573 hash ? *hash : "<null>");
723 * Given a username and site passphrase hash from the session, determine
729 * If the site passphrase hash does not match the sent hash, this function
738 const char *hash = ap_md5(r->pool,
741 if (!strcmp(sent_hash, hash)) {