Package com.jsql.util.bruter
Class Crc64Helper
java.lang.Object
com.jsql.util.bruter.Crc64Helper
CRC64 checksum calculator based on the polynom specified in ISO 3309. The
implementation is based on the following publications:
- http://en.wikipedia.org/wiki/Cyclic_redundancy_check
- http://www.geocities.com/SiliconValley/Pines/8659/crc.htm
-
Method Summary
Modifier and TypeMethodDescriptionstatic String
generateCRC64
(byte[] data) Calculates the CRC64 checksum for the given data array.
-
Method Details
-
generateCRC64
Calculates the CRC64 checksum for the given data array.- Parameters:
data
- data to calculate checksum for- Returns:
- checksum value
-