Searched defs:truncpw (Results 1 - 2 of 2) sorted by relevance

/httpd/modules/lua/
H A Dlua_passwd.c133 char *truncpw = apr_pstrdup(ctx->pool, pw); local
134 truncpw[8] = '\0';
135 if (!strcmp(ctx->out, crypt(truncpw, salt))) {
140 memset(truncpw, '\0', strlen(pw));
/httpd/support/
H A Dpasswd_common.c238 char *truncpw = apr_pstrdup(ctx->pool, pw); local
239 truncpw[8] = '\0';
240 if (!strcmp(ctx->out, crypt(truncpw, salt))) {
244 memset(truncpw, '\0', strlen(pw));

Completed in 2284 milliseconds