From: Timo Sirainen Date: Fri, 23 Jul 2004 18:07:14 +0000 (+0300) Subject: crypt_generate and md5_generate used only 3 different characters for salt. X-Git-Tag: 1.1.alpha1~3750 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=93b7c5ff4dc3f77e3248845dab1917241852514a;p=thirdparty%2Fdovecot%2Fcore.git crypt_generate and md5_generate used only 3 different characters for salt. Patch by Joshua Goodall. --HG-- branch : HEAD --- diff --git a/src/auth/password-scheme.c b/src/auth/password-scheme.c index c7e08da13f..90420fdbea 100644 --- a/src/auth/password-scheme.c +++ b/src/auth/password-scheme.c @@ -15,7 +15,7 @@ # include #endif -static const char *salt_chars = +static const char salt_chars[] = "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; static buffer_t *schemes_buf;