Sha256: 7ce337f97a60ae07f16d6d46c45ab90ccec5d6b7c7447e2705a59fe1b199d843
Contents?: true
Size: 1.91 KB
Versions: 2
Compression:
Stored size: 1.91 KB
Contents
# # Ronin - A Ruby platform for exploit development and security research. # # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com) # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301 USA # require 'digest/md5' require 'digest/sha1' require 'digest/sha2' class String # # @return [String] # The MD5 checksum of the String. # # @example # "hello".md5 # # => "5d41402abc4b2a76b9719d911017c592" # def md5 Digest::MD5.hexdigest(self) end # # @return [String] # The SHA1 checksum of the String. # # @example # "hello".sha1 # # => "aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d" # def sha1 Digest::SHA1.hexdigest(self) end alias sha128 sha1 # # @return [String] # The SHA2 checksum of the String. # # @example # "hello".sha2 # # => "2cf24dba5fb0a30e26e83b2ac5b9e29e1b161e5c1fa7425e73043362938b9824" # def sha256 Digest::SHA256.hexdigest(self) end alias sha2 sha256 # # @return [String] # The SHA512 checksum of the String. # # @example # "hello".sha512 # # => "9b71d224bd62f3785d96d46ad3ea3d73319bfbc2890caadae2dff72519673ca72323c3d99ba5c11d7c7acc6e14b8c5da0c4663475c2e5c3adef46f73bcdec043" # def sha512 Digest::SHA512.hexdigest(self) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ronin-support-0.1.0.pre2 | lib/ronin/formatting/extensions/digest/string.rb |
ronin-support-0.1.0.pre1 | lib/ronin/formatting/extensions/digest/string.rb |