DSA.TryHashData メソッド

定義

指定されたバッファーに指定されたデータのハッシュ値を計算しようとします。

protected:
 virtual bool TryHashData(ReadOnlySpan<System::Byte> data, Span<System::Byte> destination, System::Security::Cryptography::HashAlgorithmName hashAlgorithm, [Runtime::InteropServices::Out] int % bytesWritten);
protected virtual bool TryHashData (ReadOnlySpan<byte> data, Span<byte> destination, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, out int bytesWritten);
abstract member TryHashData : ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.HashAlgorithmName * int -> bool
override this.TryHashData : ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.HashAlgorithmName * int -> bool
Protected Overridable Function TryHashData (data As ReadOnlySpan(Of Byte), destination As Span(Of Byte), hashAlgorithm As HashAlgorithmName, ByRef bytesWritten As Integer) As Boolean

パラメーター

data
ReadOnlySpan<Byte>

ハッシュされるデータ。

destination
Span<Byte>

ハッシュ値を受け取るバイト スパン。

hashAlgorithm
HashAlgorithmName

使用するハッシュ アルゴリズムの名前。

bytesWritten
Int32

このメソッドが戻るときに、destination に書き込まれたバイト数を示す値が含まれます。

戻り値

destination が結果を受け入れるだけの十分な大きさの場合は true。それ以外の場合は false

注釈

このメソッドの既定の実装では、 を呼び出 HashData(Byte[], Int32, Int32, HashAlgorithmName) し、結果を にコピーします destination

派生型は、中間配列の作成を回避するために、このメソッドをオーバーライドする必要があります。

適用対象