Method: String#md5
- Defined in:
- lib/gorge/string.rb
#md5 ⇒ String
Returns the MD5 hash (in hexadecimal format) of the String.
13 14 15 |
# File 'lib/gorge/string.rb', line 13 def md5 Digest::MD5.hexdigest(self) end |
Returns the MD5 hash (in hexadecimal format) of the String.
13 14 15 |
# File 'lib/gorge/string.rb', line 13 def md5 Digest::MD5.hexdigest(self) end |