class Sequel::Plugins::Password::BCryptHasher
BCryptHasher
implements a BCrypt password hasher.
Public Class Methods
new()
click to toggle source
# File lib/sequel_password/hashers.rb, line 117 def initialize @algorithm = :bcrypt @cost = 12 @digest = nil end