NonCryptographicHashAlgorithm.GetHashAndReset Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetHashAndReset() |
Gets the current computed hash value and clears the accumulated state. |
GetHashAndReset(Span<Byte>) |
Writes the computed hash value to |
GetHashAndReset()
Gets the current computed hash value and clears the accumulated state.
public:
cli::array <System::Byte> ^ GetHashAndReset();
public byte[] GetHashAndReset ();
member this.GetHashAndReset : unit -> byte[]
Public Function GetHashAndReset () As Byte()
Returns
The hash value for the data already provided.
Applies to
GetHashAndReset(Span<Byte>)
Writes the computed hash value to destination
then clears the accumulated state.
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
Parameters
Returns
The number of bytes written to destination
, which is always HashLengthInBytes.
Exceptions
destination
is shorter than HashLengthInBytes.