CryptographicOperations.HashData メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
HashData(HashAlgorithmName, Byte[]) |
データのハッシュを計算します。 |
HashData(HashAlgorithmName, Stream) |
ストリームのハッシュを計算します。 |
HashData(HashAlgorithmName, ReadOnlySpan<Byte>) |
データのハッシュを計算します。 |
HashData(HashAlgorithmName, Stream, Span<Byte>) |
ストリームのハッシュを計算します。 |
HashData(HashAlgorithmName, ReadOnlySpan<Byte>, Span<Byte>) |
データのハッシュを計算します。 |
HashData(HashAlgorithmName, Byte[])
データのハッシュを計算します。
public:
static cli::array <System::Byte> ^ HashData(System::Security::Cryptography::HashAlgorithmName hashAlgorithm, cli::array <System::Byte> ^ source);
public static byte[] HashData (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, byte[] source);
static member HashData : System.Security.Cryptography.HashAlgorithmName * byte[] -> byte[]
Public Shared Function HashData (hashAlgorithm As HashAlgorithmName, source As Byte()) As Byte()
パラメーター
- hashAlgorithm
- HashAlgorithmName
ハッシュの計算に使用されるアルゴリズム。
- source
- Byte[]
ハッシュするデータ。
戻り値
データのハッシュ。
例外
hashAlgorithm
に空の Name があります。
hashAlgorithm
は、現在のプラットフォームでサポートされていないハッシュ アルゴリズムを指定します。
hashAlgorithm
は、不明なハッシュ アルゴリズムを指定します。
適用対象
HashData(HashAlgorithmName, Stream)
ストリームのハッシュを計算します。
public:
static cli::array <System::Byte> ^ HashData(System::Security::Cryptography::HashAlgorithmName hashAlgorithm, System::IO::Stream ^ source);
public static byte[] HashData (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.IO.Stream source);
static member HashData : System.Security.Cryptography.HashAlgorithmName * System.IO.Stream -> byte[]
Public Shared Function HashData (hashAlgorithm As HashAlgorithmName, source As Stream) As Byte()
パラメーター
- hashAlgorithm
- HashAlgorithmName
ハッシュの計算に使用されるアルゴリズム。
- source
- Stream
ハッシュするストリーム。
戻り値
データのハッシュ。
例外
hashAlgorithm
は、現在のプラットフォームでサポートされていないハッシュ アルゴリズムを指定します。
hashAlgorithm
は、不明なハッシュ アルゴリズムを指定します。
適用対象
HashData(HashAlgorithmName, ReadOnlySpan<Byte>)
データのハッシュを計算します。
public:
static cli::array <System::Byte> ^ HashData(System::Security::Cryptography::HashAlgorithmName hashAlgorithm, ReadOnlySpan<System::Byte> source);
public static byte[] HashData (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, ReadOnlySpan<byte> source);
static member HashData : System.Security.Cryptography.HashAlgorithmName * ReadOnlySpan<byte> -> byte[]
Public Shared Function HashData (hashAlgorithm As HashAlgorithmName, source As ReadOnlySpan(Of Byte)) As Byte()
パラメーター
- hashAlgorithm
- HashAlgorithmName
ハッシュの計算に使用されるアルゴリズム。
- source
- ReadOnlySpan<Byte>
ハッシュするデータ。
戻り値
データのハッシュ。
例外
hashAlgorithm
には、null
されている Name があります。
hashAlgorithm
に空の Name があります。
hashAlgorithm
は、現在のプラットフォームでサポートされていないハッシュ アルゴリズムを指定します。
hashAlgorithm
は、不明なハッシュ アルゴリズムを指定します。
適用対象
HashData(HashAlgorithmName, Stream, Span<Byte>)
ストリームのハッシュを計算します。
public:
static int HashData(System::Security::Cryptography::HashAlgorithmName hashAlgorithm, System::IO::Stream ^ source, Span<System::Byte> destination);
public static int HashData (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.IO.Stream source, Span<byte> destination);
static member HashData : System.Security.Cryptography.HashAlgorithmName * System.IO.Stream * Span<byte> -> int
Public Shared Function HashData (hashAlgorithm As HashAlgorithmName, source As Stream, destination As Span(Of Byte)) As Integer
パラメーター
- hashAlgorithm
- HashAlgorithmName
ハッシュの計算に使用されるアルゴリズム。
- source
- Stream
ハッシュするストリーム。
戻り値
destination
に書き込まれた合計バイト数。
例外
destination
内のバッファーが小さすぎて、計算されたハッシュ サイズを保持できません。
-又は-
hashAlgorithm
に空の Name があります。
-又は-
source
は読み取りをサポートしていません。
hashAlgorithm
は、現在のプラットフォームでサポートされていないハッシュ アルゴリズムを指定します。
hashAlgorithm
は、不明なハッシュ アルゴリズムを指定します。
適用対象
HashData(HashAlgorithmName, ReadOnlySpan<Byte>, Span<Byte>)
データのハッシュを計算します。
public:
static int HashData(System::Security::Cryptography::HashAlgorithmName hashAlgorithm, ReadOnlySpan<System::Byte> source, Span<System::Byte> destination);
public static int HashData (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, ReadOnlySpan<byte> source, Span<byte> destination);
static member HashData : System.Security.Cryptography.HashAlgorithmName * ReadOnlySpan<byte> * Span<byte> -> int
Public Shared Function HashData (hashAlgorithm As HashAlgorithmName, source As ReadOnlySpan(Of Byte), destination As Span(Of Byte)) As Integer
パラメーター
- hashAlgorithm
- HashAlgorithmName
ハッシュの計算に使用されるアルゴリズム。
- source
- ReadOnlySpan<Byte>
ハッシュするデータ。
戻り値
destination
に書き込まれた合計バイト数。
例外
hashAlgorithm
には、null
されている Name があります。
hashAlgorithm
は、現在のプラットフォームでサポートされていないハッシュ アルゴリズムを指定します。
hashAlgorithm
は、不明なハッシュ アルゴリズムを指定します。
適用対象
.NET