Project

rm-digest

0.01
No commit activity in last 3 years
No release in over 3 years
MD5 and SHA1 Digest
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

RmDigest

Simple gem to provide MD5, SHA1, and SHA256 digest functionality. It uses ObjC library, included in vendor directory. Use instead of the

Installation

Add this line to your application's Gemfile:

gem 'rm-digest'

And then execute:

$ bundle

Or install it yourself as:

$ gem install rm-digest

Usage

digestSHA1String = RmDigest::SHA1.hexdigest('some string')
digestSHA256String = RmDigest::SHA256.hexdigest('some string')
digestMD51String = RmDigest::MD5.hexdigest('some string')

Gem provides byte based digests

digestSHA1Bytes = RmDigest::SHA1.digest('some string')
digestSHA256Bytes = RmDigest::SHA256.digest('some string')
digestMD51Bytes = RmDigest::MD5.digest('some string')

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request