CryptographicOperations.TryHashData メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
データのハッシュの計算を試みます。
public:
static bool TryHashData(System::Security::Cryptography::HashAlgorithmName hashAlgorithm, ReadOnlySpan<System::Byte> source, Span<System::Byte> destination, [Runtime::InteropServices::Out] int % bytesWritten);
public static bool TryHashData (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, ReadOnlySpan<byte> source, Span<byte> destination, out int bytesWritten);
static member TryHashData : System.Security.Cryptography.HashAlgorithmName * ReadOnlySpan<byte> * Span<byte> * int -> bool
Public Shared Function TryHashData (hashAlgorithm As HashAlgorithmName, source As ReadOnlySpan(Of Byte), destination As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean
パラメーター
- hashAlgorithm
- HashAlgorithmName
ハッシュの計算に使用されるアルゴリズム。
- source
- ReadOnlySpan<Byte>
ハッシュするデータ。
- bytesWritten
- Int32
このメソッドが返されるときに、destination
に書き込まれたバイトの合計数。
戻り値
false
destination
が小さすぎて計算されたハッシュを保持できない場合は、それ以外の場合 true
。
例外
hashAlgorithm
に空の Name があります。
hashAlgorithm
には、null
されている Name があります。
hashAlgorithm
は、現在のプラットフォームでサポートされていないハッシュ アルゴリズムを指定します。
hashAlgorithm
は、不明なハッシュ アルゴリズムを指定します。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET