Class: Monban::Domain::Password::Checker

Inherits:
Object
  • Object
show all
Includes:
Getto::InitializeWith, Helper
Defined in:
lib/monban/domain/password.rb

Instance Method Summary collapse

Instance Method Details

#hash_secret(password:, salt:) ⇒ Object



41
42
43
44
45
46
# File 'lib/monban/domain/password.rb', line 41

def hash_secret(password:, salt:)
  password_checker.hash_secret(
    password: digest(password: password),
    salt: salt,
  )
end