summaryrefslogtreecommitdiff
path: root/lib/trocla/formats/md5crypt.rb
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2014-06-27 19:23:20 +0200
committermh <mh@immerda.ch>2014-06-27 19:23:20 +0200
commitecb2a2c7c6ec3576bc49747a484fa0f8e93a50fa (patch)
tree05ccf120e136b3d6d77a8d91f9930f0139b8e54b /lib/trocla/formats/md5crypt.rb
parent20de208ee827cb451e60705180909ce81eae0127 (diff)
parent08ac533d2156b666ae6ca68e797992629051315f (diff)
Merge branch 'tilya-charset_option'
Diffstat (limited to 'lib/trocla/formats/md5crypt.rb')
-rw-r--r--lib/trocla/formats/md5crypt.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/trocla/formats/md5crypt.rb b/lib/trocla/formats/md5crypt.rb
index 36e3a3c..80d2f09 100644
--- a/lib/trocla/formats/md5crypt.rb
+++ b/lib/trocla/formats/md5crypt.rb
@@ -1,5 +1,5 @@
# salted crypt
-class Trocla::Formats::Md5crypt
+class Trocla::Formats::Md5crypt < Trocla::Formats::Base
def format(plain_password,options={})
plain_password.crypt('$1$' << Trocla::Util.salt << '$')
end