summaryrefslogtreecommitdiff
path: root/lib/trocla/formats/sha256crypt.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/trocla/formats/sha256crypt.rb')
-rw-r--r--lib/trocla/formats/sha256crypt.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/trocla/formats/sha256crypt.rb b/lib/trocla/formats/sha256crypt.rb
index fe6659c..6bd1b72 100644
--- a/lib/trocla/formats/sha256crypt.rb
+++ b/lib/trocla/formats/sha256crypt.rb
@@ -1,6 +1,6 @@
# salted crypt
class Trocla::Formats::Sha256crypt
def format(plain_password,options={})
- plain_password.crypt('$5$' << Trocla::Util.random_str(8) << '$')
+ plain_password.crypt('$5$' << Trocla::Util.salt << '$')
end
end