Method: Rex::Text.md5_raw

Defined in:
lib/rex/text.rb

.md5_raw(str) ⇒ Object

Raw MD5 digest of the supplied string



1140
1141
1142
# File 'lib/rex/text.rb', line 1140

def self.md5_raw(str)
  Digest::MD5.digest(str)
end