| Short description: |
Create multiple digest(MD5,SHA-1...) |
| Category: |
Library/Cryptography |
| Status: |
beta |
| Created: |
2006-05-23 12:05:28 GMT |
| Last update: |
2006-05-23 12:05:28 GMT |
| Owner: |
MoonWolf
(Projects of this owner) |
| Homepage: |
not available |
| Download: |
http://www.moonwolf.com/ruby/archive/digest-summary-0.0.20060523.tar.gz
|
| License: |
Ruby's |
| Dependency: |
|
| Description: |
USAGE
-----
require 'digest/summary'
path = ARGV.shift
sum = Digest::Summary.new
sum.read(path)
sum.hexdigest.sort.each {|name, hex|
puts "%s *%s \# %s" % [hex, path, name]
}
|