System.IO.Hashing.Crc64ParameterSet
namespace System.IO.Hashing
{
public class Crc64ParameterSet
{
public ulong Polynomial { get; }
public ulong InitialValue { get; }
public ulong FinalXorValue { get; }
public bool ReflectValues { get; }
public static Crc64ParameterSet Crc64 { get; }
public static Crc64ParameterSet Nvme { get; }
public static Crc64ParameterSet Create(ulong polynomial, ulong initialValue, ulong finalXorValue, bool reflectValues);
}
}