30 Sep
2014
30 Sep
'14
3:20 p.m.
On Mon, Sep 29, 2014 at 10:08:41AM +0200, G??tz Reinicke - IT Koordinator wrote:
The example wiki shows the passwords {SHA1}...., in my password file they are {SHA}....
You don't need to worry about that part, {SHA} and {SHA1} are aliases that map to the same behaviour:
src/auth/password-scheme.c#0805 0805 static const struct password_scheme builtin_schemes[] = { ... 0810 { "SHA", PW_ENCODING_BASE64, SHA1_RESULTLEN, NULL, sha1_generate }, 0811 { "SHA1", PW_ENCODING_BASE64, SHA1_RESULTLEN, NULL, sha1_generate },
Phil