https://github.com/phlegx/digest-whirlpool
Digest::Whirlpool - Ruby interface to the Whirlpool message digest algorithm
https://github.com/phlegx/digest-whirlpool
digest ruby rubygem whirlpool
Last synced: about 2 months ago
JSON representation
Digest::Whirlpool - Ruby interface to the Whirlpool message digest algorithm
- Host: GitHub
- URL: https://github.com/phlegx/digest-whirlpool
- Owner: phlegx
- License: other
- Created: 2017-06-29T14:19:16.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2022-09-08T12:27:11.000Z (almost 4 years ago)
- Last Synced: 2025-02-08T05:41:28.912Z (over 1 year ago)
- Topics: digest, ruby, rubygem, whirlpool
- Language: C
- Size: 39.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Digest::Whirlpool - Ruby interface to the Whirlpool message digest algorithm
## Summary
Digest::Whirlpool is a Ruby library for calculating message digests
using the Whirlpool algorithm. The library interface conforms to the
standard Digest API.
More information about Whirlpool:
- http://en.wikipedia.org/wiki/Whirlpool_%28algorithm%29
- http://planeta.terra.com.br/informatica/paulobarreto/WhirlpoolPage.html
The C code is based on the sample implementation, as available on the
mentioned website.
## Requirements
- Ruby 2.2 or later
## Usage
In Gemfile:
gem "digest-whirlpool"
In your ruby code:
require "digest"
p Digest::Whirlpool.hexdigest("") # The module is auto-loaded
## License
See the file LICENSE.