https://github.com/knu/ruby-digest-tiger
Modules related to message digesting algorithms that conform to the standard Digest API (ext/digest)
https://github.com/knu/ruby-digest-tiger
Last synced: about 1 year ago
JSON representation
Modules related to message digesting algorithms that conform to the standard Digest API (ext/digest)
- Host: GitHub
- URL: https://github.com/knu/ruby-digest-tiger
- Owner: knu
- License: other
- Created: 2009-03-24T16:35:31.000Z (about 17 years ago)
- Default Branch: master
- Last Pushed: 2020-04-04T20:11:37.000Z (about 6 years ago)
- Last Synced: 2025-03-25T14:51:14.646Z (about 1 year ago)
- Language: C
- Homepage:
- Size: 77.1 KB
- Stars: 7
- Watchers: 3
- Forks: 9
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Digest::Tiger - Ruby interface to the Tiger message digest algorithm
## Summary
Digest::Tiger is a Ruby library for calculating message digests using
the Tiger algorithm. The library interface conforms to the standard
Digest API.
More information about Tiger:
- http://en.wikipedia.org/wiki/Tiger_%28hash%29
- http://www.cs.technion.ac.il/~biham/Reports/Tiger/
## Requirements
- Ruby 2.2 or later
## Usage
In Gemfile:
gem "digest-tiger"
In your ruby code:
require "digest"
p Digest::Tiger.hexdigest("") # The module is auto-loaded
## License
See the file LICENSE.