NonCryptographicHashAlgorithm.GetCurrentHash Método

Definição

Sobrecargas

Name Description
GetCurrentHash()

Obtém o valor de hash computado atual sem modificar o estado acumulado.

GetCurrentHash(Span<Byte>)

Escreve o valor de hash calculado sem destination modificar o estado acumulado.

GetCurrentHash()

Origem:
NonCryptographicHashAlgorithm.cs
Origem:
NonCryptographicHashAlgorithm.cs
Origem:
NonCryptographicHashAlgorithm.cs
Origem:
NonCryptographicHashAlgorithm.cs

Obtém o valor de hash computado atual sem modificar o estado acumulado.

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

Devoluções

Byte[]

O valor de hash dos dados já fornecidos.

Aplica-se a

GetCurrentHash(Span<Byte>)

Origem:
NonCryptographicHashAlgorithm.cs
Origem:
NonCryptographicHashAlgorithm.cs
Origem:
NonCryptographicHashAlgorithm.cs
Origem:
NonCryptographicHashAlgorithm.cs

Escreve o valor de hash calculado sem destination modificar o estado acumulado.

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

Parâmetros

destination
Span<Byte>

O buffer que recebe o valor de hash calculado.

Devoluções

O número de bytes escritos em destination, que é sempre HashLengthInBytes.

Exceções

destination é mais curto que HashLengthInBytes.

Aplica-se a