SHA3_512.HashData Method

Definition

Overloads

HashData(Byte[])

Computes the hash of data using the SHA3-512 algorithm.

HashData(Stream)

Computes the hash of a stream using the SHA3-512 algorithm.

HashData(ReadOnlySpan<Byte>)

Computes the hash of data using the SHA3-512 algorithm.

HashData(Stream, Span<Byte>)

Computes the hash of a stream using the SHA3-512 algorithm.

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

Computes the hash of data using the SHA3-512 algorithm.

HashData(Byte[])

Source:
SHA3_512.cs
Source:
SHA3_512.cs

Computes the hash of data using the SHA3-512 algorithm.

public static byte[] HashData (byte[] source);

Parameters

source
Byte[]

The data to hash.

Returns

Byte[]

The hash of the data.

Exceptions

source is null.

The platform does not support SHA3-512.

Applies to

.NET 9 and .NET 8
Product Versions
.NET 8, 9

HashData(Stream)

Source:
SHA3_512.cs
Source:
SHA3_512.cs

Computes the hash of a stream using the SHA3-512 algorithm.

public static byte[] HashData (System.IO.Stream source);

Parameters

source
Stream

The stream to hash.

Returns

Byte[]

The hash of the data.

Exceptions

source is null.

source does not support reading.

The platform does not support SHA3-512.

Applies to

.NET 9 and .NET 8
Product Versions
.NET 8, 9

HashData(ReadOnlySpan<Byte>)

Source:
SHA3_512.cs
Source:
SHA3_512.cs

Computes the hash of data using the SHA3-512 algorithm.

public static byte[] HashData (ReadOnlySpan<byte> source);

Parameters

source
ReadOnlySpan<Byte>

The data to hash.

Returns

Byte[]

The hash of the data.

Exceptions

The platform does not support SHA3-512.

Applies to

.NET 9 and .NET 8
Product Versions
.NET 8, 9

HashData(Stream, Span<Byte>)

Source:
SHA3_512.cs
Source:
SHA3_512.cs

Computes the hash of a stream using the SHA3-512 algorithm.

public static int HashData (System.IO.Stream source, Span<byte> destination);

Parameters

source
Stream

The stream to hash.

destination
Span<Byte>

The buffer to receive the hash value.

Returns

The total number of bytes written to destination.

Exceptions

source is null.

The buffer in destination is too small to hold the calculated hash size. The SHA3-512 algorithm always produces a 512-bit hash, or 64 bytes.

-or-

source does not support reading.

The platform does not support SHA3-512.

Applies to

.NET 9 and .NET 8
Product Versions
.NET 8, 9

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

Source:
SHA3_512.cs
Source:
SHA3_512.cs

Computes the hash of data using the SHA3-512 algorithm.

public static int HashData (ReadOnlySpan<byte> source, Span<byte> destination);

Parameters

source
ReadOnlySpan<Byte>

The data to hash.

destination
Span<Byte>

The buffer to receive the hash value.

Returns

The total number of bytes written to destination.

Exceptions

The buffer in destination is too small to hold the calculated hash size. The SHA3-512 algorithm always produces a 512-bit hash, or 64 bytes.

The platform does not support SHA3-512.

Applies to

.NET 9 and .NET 8
Product Versions
.NET 8, 9