Sha256: 3fbf15c9b11b201d86b4054a9a1017d2a567dcae9844f6e5cc8bcbd1143c808b
Contents?: true
Size: 954 Bytes
Versions: 1
Compression:
Stored size: 954 Bytes
Contents
# ED2K digest for Ruby [![build status](https://gitlab.com/valeth/digest-ed2k-hash.rb/badges/master/build.svg)](https://gitlab.com/valeth/digest-ed2k-hash.rb/commits/master) This is a Ruby implementation of the [ED2k](https://en.wikipedia.org/wiki/Ed2k_URI_scheme#eD2k_hash_algorithm) hashing algorithm. Additional information can be found [here](http://wiki.anidb.net/w/Ed2k-hash). ## Installation Add this line to your application's Gemfile: ```ruby gem 'digest-ed2k-hash' ``` And then execute: $ bundle Or install it yourself as: $ gem install digest-ed2k-hash ## Example usage ```ruby require 'digest/ed2k' # Create a hexdigest of a file puts Digest::ED2K.file('myfile').hexdigest # Append strings to a digest object dig = Digest::ED2K.new dig << 'hello' dig << ' world' dig.finish puts dig.hexdigest ``` ## Contributing Bug reports and merge requests are welcome on [GitLab](https://gitlab.com/valeth/digest-ed2k-hash.rb).
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
digest-ed2k-hash-0.2.0 | README.md |