NonCryptographicHashAlgorithm.GetCurrentHash Metodo

Definizione

Overload

Nome Descrizione
GetCurrentHash()

Ottiene il valore hash calcolato corrente senza modificare lo stato accumulato.

GetCurrentHash(Span<Byte>)

Scrive il valore hash calcolato in destination senza modificare lo stato accumulato.

GetCurrentHash()

Origine:
NonCryptographicHashAlgorithm.cs
Origine:
NonCryptographicHashAlgorithm.cs
Origine:
NonCryptographicHashAlgorithm.cs
Origine:
NonCryptographicHashAlgorithm.cs

Ottiene il valore hash calcolato corrente senza modificare lo stato accumulato.

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

Valori restituiti

Byte[]

Valore hash per i dati già forniti.

Si applica a

GetCurrentHash(Span<Byte>)

Origine:
NonCryptographicHashAlgorithm.cs
Origine:
NonCryptographicHashAlgorithm.cs
Origine:
NonCryptographicHashAlgorithm.cs
Origine:
NonCryptographicHashAlgorithm.cs

Scrive il valore hash calcolato in destination senza modificare lo stato accumulato.

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

Parametri

destination
Span<Byte>

Buffer che riceve il valore hash calcolato.

Valori restituiti

Numero di byte scritti in destination, che è sempre HashLengthInBytes.

Eccezioni

destination è più breve di HashLengthInBytes.

Si applica a