Crc32.Hash Method

Definition

Overloads

Hash(Byte[])

Computes the CRC-32 hash of the provided data.

Hash(ReadOnlySpan<Byte>)

Computes the CRC-32 hash of the provided data.

Hash(ReadOnlySpan<Byte>, Span<Byte>)

Computes the CRC-32 hash of the provided data into the provided destination.

Hash(Byte[])

Source:
Crc32.cs
Source:
Crc32.cs
Source:
Crc32.cs
Source:
Crc32.cs

Computes the CRC-32 hash of the provided data.

public:
 static cli::array <System::Byte> ^ Hash(cli::array <System::Byte> ^ source);
public static byte[] Hash (byte[] source);
static member Hash : byte[] -> byte[]
Public Shared Function Hash (source As Byte()) As Byte()

Parameters

source
Byte[]

The data to hash.

Returns

Byte[]

The CRC-32 hash of the provided data.

Exceptions

source is null.

Applies to

Hash(ReadOnlySpan<Byte>)

Source:
Crc32.cs
Source:
Crc32.cs
Source:
Crc32.cs
Source:
Crc32.cs

Computes the CRC-32 hash of the provided data.

public:
 static cli::array <System::Byte> ^ Hash(ReadOnlySpan<System::Byte> source);
public static byte[] Hash (ReadOnlySpan<byte> source);
static member Hash : ReadOnlySpan<byte> -> byte[]
Public Shared Function Hash (source As ReadOnlySpan(Of Byte)) As Byte()

Parameters

source
ReadOnlySpan<Byte>

The data to hash.

Returns

Byte[]

The CRC-32 hash of the provided data.

Applies to

Hash(ReadOnlySpan<Byte>, Span<Byte>)

Source:
Crc32.cs
Source:
Crc32.cs
Source:
Crc32.cs
Source:
Crc32.cs

Computes the CRC-32 hash of the provided data into the provided destination.

public:
 static int Hash(ReadOnlySpan<System::Byte> source, Span<System::Byte> destination);
public static int Hash (ReadOnlySpan<byte> source, Span<byte> destination);
static member Hash : ReadOnlySpan<byte> * Span<byte> -> int
Public Shared Function Hash (source As ReadOnlySpan(Of Byte), destination As Span(Of Byte)) As Integer

Parameters

source
ReadOnlySpan<Byte>

The data to hash.

destination
Span<Byte>

The buffer that receives the computed hash value.

Returns

The number of bytes written to destination.

Applies to