class Trocla::Formats::Bcrypt

Public Instance Methods

format(plain_password,options={}) click to toggle source
# File lib/trocla/formats/bcrypt.rb, line 3
def format(plain_password,options={})
  BCrypt::Password.create(plain_password).to_s
end