Method: String#crc32

Defined in:
lib/gorge/string.rb

#crc32String

Returns the CRC32 checksum (in hexadecimal format) of the String.

Returns:



6
7
8
# File 'lib/gorge/string.rb', line 6

def crc32
  Digest::CRC32.hexdigest(self)
end