Searched defs:sha1 (Results 1 - 3 of 3) sorted by relevance

/httpd/modules/aaa/
H A Dmod_auth_digest.c1037 unsigned char sha1[APR_SHA1_DIGESTSIZE]; local
1052 apr_sha1_final(sha1, &ctx);
1054 ap_bin2hex(sha1, APR_SHA1_DIGESTSIZE, hash);
/httpd/server/
H A Dutil_expr_eval.c1108 apr_byte_t sha1[APR_SHA1_DIGESTSIZE]; local
1115 apr_sha1_final(sha1, &context);
1117 ap_bin2hex(sha1, APR_SHA1_DIGESTSIZE, out);
1784 { sha1_func, "sha1", NULL, 0 },
/httpd/modules/lua/
H A Dlua_request.c923 * lua_apr_sha1; r:sha1(string) - Calculates the SHA1 digest of a string
928 apr_sha1_ctx_t sha1; local
938 apr_sha1_init(&sha1);
939 apr_sha1_update(&sha1, buffer, len);
940 apr_sha1_final(digest, &sha1);
2142 apr_sha1_ctx_t sha1; local
2152 apr_sha1_init(&sha1);
2153 apr_sha1_update(&sha1, key, strlen(key));
2154 apr_sha1_final(digest, &sha1);
2865 apr_hash_set(dispatch, "sha1", APR_HASH_KEY_STRIN
[all...]

Completed in 146 milliseconds