NtDllRtlCrc64 Method

Calculates the CRC-64 checksum for a block of bytes.

Definition

Namespace: DevCase.Win32.NativeMethods
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("NtDll.dll", SetLastError = true)]
public static ulong RtlCrc64(
	byte[] buffer,
	IntPtr size,
	ulong initialValue = 18446744073709551615
)

Parameters

buffer  Byte
The buffer containing the data to calculate its CRC checksum.
size  IntPtr
The size of buffer parameter, in bytes.
initialValue  UInt64  (Optional)
The value used to initialize the CRC value/register.

Return Value

UInt64
Returns the resulting CRC-64 checksum.

Remarks

See Also