class Sorcery::CryptoProviders::MD5
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 Sorcery
.
Public Class Methods
secure_digest(digest)
click to toggle source
# File lib/sorcery/crypto_providers/md5.rb, line 13 def secure_digest(digest) Digest::MD5.hexdigest(digest) end