Sha256: 65f7b71c25d56bf116fecf2f75673a03b7d4f7976b7c1da1d9698fe25212b330
Contents?: true
Size: 137 Bytes
Versions: 5
Compression:
Stored size: 137 Bytes
Contents
module Password def self.hashed_password(password_salt, password) Digest::SHA1.hexdigest("#{password_salt}:#{password}") end end
Version data entries
5 entries across 5 versions & 1 rubygems