From 328b73bc759c3b8a1acd6923410911dfaef23822 Mon Sep 17 00:00:00 2001 From: mh Date: Sat, 26 Nov 2011 16:46:10 +0100 Subject: rather use salt than random string to avoid not allowed characters --- lib/trocla/formats/md5crypt.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/trocla/formats/md5crypt.rb') diff --git a/lib/trocla/formats/md5crypt.rb b/lib/trocla/formats/md5crypt.rb index f52e2a1..36e3a3c 100644 --- a/lib/trocla/formats/md5crypt.rb +++ b/lib/trocla/formats/md5crypt.rb @@ -1,6 +1,6 @@ # salted crypt class Trocla::Formats::Md5crypt def format(plain_password,options={}) - plain_password.crypt('$1$' << Trocla::Util.random_str(8) << '$') + plain_password.crypt('$1$' << Trocla::Util.salt << '$') end -end \ No newline at end of file +end -- cgit v1.2.3