From d5623a235d54b308280d90920238bf75a2880b84 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Mon, 24 Oct 2011 16:32:57 -0400 Subject: [PATCH] Combined-md5 password storage option --- distrib/gitblit.properties | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/distrib/gitblit.properties b/distrib/gitblit.properties index 28a6db8..2d48da6 100644 --- a/distrib/gitblit.properties +++ b/distrib/gitblit.properties @@ -59,7 +59,9 @@ 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 -- Gitblit v1.9.1