Method: Rex::Text.sha1_raw

Defined in:
lib/rex/text.rb

.sha1_raw(str) ⇒ Object

Raw SHA1 digest of the supplied string



1154
1155
1156
# File 'lib/rex/text.rb', line 1154

def self.sha1_raw(str)
  Digest::SHA1.digest(str)
end