Sha256: 72dc276c64bb49df012e4c5679371b3ff437783e093f6c9638abb769da31d8bf
Contents?: true
Size: 545 Bytes
Versions: 3
Compression:
Stored size: 545 Bytes
Contents
# SecureHasher Secure Hasher provides a simple Ruby API to to securely encrypt passwords. Under the hood, Secure Hasher is quite obviously flawed relying on an old school unix-style crypt method. This gem provides a perfect example of how not to manage passwords. ## Installation $ gem install secure_hasher ## Usage ```ruby SecureHasher.secure_hash(password: 'mypassword', salt: 'salt') => "sayVb7E97UXnw" ``` ## License The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
secure_hasher-1.0.3 | README.md |
secure_hasher-1.0.2 | README.md |
secure_hasher-1.0.1 | README.md |