diff options
author | James Moger <james.moger@gitblit.com> | 2011-10-24 16:32:57 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2011-10-24 16:32:57 -0400 |
commit | d5623a235d54b308280d90920238bf75a2880b84 (patch) | |
tree | dc0664243f05be8c70cf7709ea332c8d8fe56b64 /distrib | |
parent | d40adc7553bc900328afa918f45b6d9e9c3087fb (diff) | |
download | gitblit-d5623a235d54b308280d90920238bf75a2880b84.tar.gz gitblit-d5623a235d54b308280d90920238bf75a2880b84.zip |
Combined-md5 password storage option
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/gitblit.properties | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/distrib/gitblit.properties b/distrib/gitblit.properties index 28a6db83..2d48da6e 100644 --- a/distrib/gitblit.properties +++ b/distrib/gitblit.properties @@ -59,7 +59,9 @@ web.allowCookieAuthentication = true realm.userService = users.properties
# How to store passwords.
-# Valid values are plain or md5. Default is md5.
+# Valid values are plain, md5, or combined-md5. md5 is the hash of password.
+# combined-md5 is the hash of username.toLowerCase()+password.
+# Default is md5.
#
# SINCE 0.5.0
realm.passwordStorage = md5
|