NonCryptographicHashAlgorithm.GetCurrentHash Metoda

Definice

Přetížení

GetCurrentHash()

Získá aktuální vypočítanou hodnotu hash bez úpravy kumulovaného stavu.

GetCurrentHash(Span<Byte>)

Zapíše vypočítanou hodnotu hash do beze destination změny kumulovaného stavu.

GetCurrentHash()

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

Získá aktuální vypočítanou hodnotu hash bez úpravy kumulovaného stavu.

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

Návraty

Byte[]

Hodnota hash pro již zadaná data.

Platí pro

GetCurrentHash(Span<Byte>)

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

Zapíše vypočítanou hodnotu hash do beze destination změny kumulovaného stavu.

public:
 int GetCurrentHash(Span<System::Byte> destination);
public int GetCurrentHash (Span<byte> destination);
member this.GetCurrentHash : Span<byte> -> int
Public Function GetCurrentHash (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