NonCryptographicHashAlgorithm.GetHashAndReset Metoda

Definice

Přetížení

GetHashAndReset()

Získá aktuální vypočítanou hodnotu hash a vymaže kumulovaný stav.

GetHashAndReset(Span<Byte>)

Zapíše vypočítanou hodnotu hash a destination pak vymaže kumulovaný stav.

GetHashAndReset()

Zdroj:
NonCryptographicHashAlgorithm.cs
Zdroj:
NonCryptographicHashAlgorithm.cs
Zdroj:
NonCryptographicHashAlgorithm.cs

Získá aktuální vypočítanou hodnotu hash a vymaže kumulovaný stav.

public:
 cli::array <System::Byte> ^ GetHashAndReset();
public byte[] GetHashAndReset ();
member this.GetHashAndReset : unit -> byte[]
Public Function GetHashAndReset () As Byte()

Návraty

Byte[]

Hodnota hash pro již zadaná data.

Platí pro

GetHashAndReset(Span<Byte>)

Zdroj:
NonCryptographicHashAlgorithm.cs
Zdroj:
NonCryptographicHashAlgorithm.cs
Zdroj:
NonCryptographicHashAlgorithm.cs

Zapíše vypočítanou hodnotu hash a destination pak vymaže kumulovaný stav.

public:
 int GetHashAndReset(Span<System::Byte> destination);
public int GetHashAndReset (Span<byte> destination);
member this.GetHashAndReset : Span<byte> -> int
Public Function GetHashAndReset (destination As Span(Of Byte)) As Integer

Parametry

destination
Span<Byte>

Vyrovnávací paměť, která přijímá vypočítanou hodnotu hash.

Návraty

Počet bajtů zapsaných do destinationsouboru , který je vždy HashLengthInBytes.

Výjimky

destination je kratší než HashLengthInBytes.

Platí pro