Method: String#crc32
- Defined in:
- lib/gorge/string.rb
#crc32 ⇒ String
Returns the CRC32 checksum (in hexadecimal format) of the String.
6 7 8 |
# File 'lib/gorge/string.rb', line 6 def crc32 Digest::CRC32.hexdigest(self) end |
Returns the CRC32 checksum (in hexadecimal format) of the String.
6 7 8 |
# File 'lib/gorge/string.rb', line 6 def crc32 Digest::CRC32.hexdigest(self) end |