From 5129c095f3ed6b4e3b69e06138206a8701609380 Mon Sep 17 00:00:00 2001 From: "Mark H. Wood" Date: Thu, 9 Aug 2012 11:05:04 -0400 Subject: [PATCH] Document configuration of the digest algorithm and provide a commented-out example. --- dspace/config/modules/authentication-password.cfg | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/dspace/config/modules/authentication-password.cfg b/dspace/config/modules/authentication-password.cfg index 5b0c1aa00e..db03e09ce4 100644 --- a/dspace/config/modules/authentication-password.cfg +++ b/dspace/config/modules/authentication-password.cfg @@ -22,4 +22,12 @@ # using the DSpace password system will automatically become members of # this group. This is useful if you want a group made up of all internal # authenticated users. -# login.specialgroup = group-name \ No newline at end of file +# login.specialgroup = group-name + +##### Password hashing algorithm ##### + +# You may select any digest algorithm available through +# java.security.MessageDigest on your system. At least MD2, MD5, SHA-1, +# SHA-256, SHA-384, and SHA-512 should be available, but you may have +# installed others. If not set, SHA-512 will be used. +# digestAlgorithm = SHA-512