class
Crc64
public static abstract sealed class Crc64 Generate 64-bit Cyclic Redundancy Check (CRC64) checksums.
Methods
static UInt64 FromString(String str) Generates a CRC64 checksum from a string.
str — The input to generate a checksum for. returns — The generated CRC64.
static Task<UInt64> FromStreamAsync(Stream stream) Generates a CRC64 checksum from a stream asynchronously.
stream — The input to generate a checksum for. returns — The generated CRC64.
static UInt64 FromStream(Stream stream) Generates a CRC64 checksum from a stream.
stream — The input to generate a checksum for. returns — The generated CRC64.
static UInt64 FromBytes(Byte[] stream) Generates a CRC64 checksum from a byte array.