Sha256: de58cd472a9424c053a66e71d1bde0db54822ec4ab5d59282a6366cbb4e4db7c
Contents?: true
Size: 1.02 KB
Versions: 7
Compression:
Stored size: 1.02 KB
Contents
require "digest/md5" module Authlogic module CryptoProviders # This class was made for the users transitioning from md5 based systems. # I highly discourage using this crypto provider as it superbly inferior # to your other options. # # Please use any other provider offered by Authlogic (except AES256, that # would be even worse). class MD5 class << self attr_accessor :join_token # The number of times to loop through the encryption. def stretches @stretches ||= 1 end attr_writer :stretches # Turns your raw password into a MD5 hash. def encrypt(*tokens) digest = tokens.flatten.join(join_token) stretches.times { digest = Digest::MD5.hexdigest(digest) } digest end # Does the crypted password match the tokens? Uses the same tokens that # were used to encrypt. def matches?(crypted, *tokens) encrypt(*tokens) == crypted end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems