public class Crc64
extends java.lang.Object
Constructor and Description |
---|
Crc64() |
Modifier and Type | Method and Description |
---|---|
static long |
generate(long crc,
byte ch)
Calculates the next crc value.
|
static long |
generate(long crc,
byte[] buffer,
int offset,
int len)
Calculates CRC from a char buffer
|
static long |
generate(long crc,
char[] buffer,
int offset,
int len)
Calculates CRC from a char buffer
|
static long |
generate(long crc,
long value)
Calculates CRC from a long
|
static long |
generate(long crc,
java.lang.String value)
Calculates CRC from a string.
|
static long |
generate(java.lang.String value)
Calculates CRC from a string.
|
static long |
next(long crc,
int ch)
Calculates the next crc value.
|
public static long generate(java.lang.String value)
public static long generate(long crc, java.lang.String value)
public static long generate(long crc, char[] buffer, int offset, int len)
public static long generate(long crc, byte[] buffer, int offset, int len)
public static long generate(long crc, long value)
public static long generate(long crc, byte ch)
public static long next(long crc, int ch)