ECDsa.VerifyDataCore メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
VerifyDataCore(Stream, ReadOnlySpan<Byte>, HashAlgorithmName, DSASignatureFormat) |
指定したデータに対してデジタル署名が有効であることを検証します。 |
VerifyDataCore(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, HashAlgorithmName, DSASignatureFormat) |
指定したデータに対してデジタル署名が有効であることを検証します。 |
VerifyDataCore(Stream, ReadOnlySpan<Byte>, HashAlgorithmName, DSASignatureFormat)
- ソース:
- ECDsa.cs
- ソース:
- ECDsa.cs
- ソース:
- ECDsa.cs
指定したデータに対してデジタル署名が有効であることを検証します。
protected:
virtual bool VerifyDataCore(System::IO::Stream ^ data, ReadOnlySpan<System::Byte> signature, System::Security::Cryptography::HashAlgorithmName hashAlgorithm, System::Security::Cryptography::DSASignatureFormat signatureFormat);
protected virtual bool VerifyDataCore (System.IO.Stream data, ReadOnlySpan<byte> signature, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.DSASignatureFormat signatureFormat);
abstract member VerifyDataCore : System.IO.Stream * ReadOnlySpan<byte> * System.Security.Cryptography.HashAlgorithmName * System.Security.Cryptography.DSASignatureFormat -> bool
override this.VerifyDataCore : System.IO.Stream * ReadOnlySpan<byte> * System.Security.Cryptography.HashAlgorithmName * System.Security.Cryptography.DSASignatureFormat -> bool
Protected Overridable Function VerifyDataCore (data As Stream, signature As ReadOnlySpan(Of Byte), hashAlgorithm As HashAlgorithmName, signatureFormat As DSASignatureFormat) As Boolean
パラメーター
- data
- Stream
署名されるデータ。
- signature
- ReadOnlySpan<Byte>
検証する署名。
- hashAlgorithm
- HashAlgorithmName
検証プロセスのデータをハッシュするために使用されるハッシュ アルゴリズム。
- signatureFormat
- DSASignatureFormat
signature
のエンコード形式。
戻り値
指定したデータに対してデジタル署名が有効な場合は true
。それ以外の場合は false
。
例外
ハッシュまたは検証操作で発生したエラー。
適用対象
VerifyDataCore(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, HashAlgorithmName, DSASignatureFormat)
- ソース:
- ECDsa.cs
- ソース:
- ECDsa.cs
- ソース:
- ECDsa.cs
指定したデータに対してデジタル署名が有効であることを検証します。
protected:
virtual bool VerifyDataCore(ReadOnlySpan<System::Byte> data, ReadOnlySpan<System::Byte> signature, System::Security::Cryptography::HashAlgorithmName hashAlgorithm, System::Security::Cryptography::DSASignatureFormat signatureFormat);
protected virtual bool VerifyDataCore (ReadOnlySpan<byte> data, ReadOnlySpan<byte> signature, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.DSASignatureFormat signatureFormat);
abstract member VerifyDataCore : ReadOnlySpan<byte> * ReadOnlySpan<byte> * System.Security.Cryptography.HashAlgorithmName * System.Security.Cryptography.DSASignatureFormat -> bool
override this.VerifyDataCore : ReadOnlySpan<byte> * ReadOnlySpan<byte> * System.Security.Cryptography.HashAlgorithmName * System.Security.Cryptography.DSASignatureFormat -> bool
Protected Overridable Function VerifyDataCore (data As ReadOnlySpan(Of Byte), signature As ReadOnlySpan(Of Byte), hashAlgorithm As HashAlgorithmName, signatureFormat As DSASignatureFormat) As Boolean
パラメーター
- data
- ReadOnlySpan<Byte>
署名されるデータ。
- signature
- ReadOnlySpan<Byte>
検証する署名。
- hashAlgorithm
- HashAlgorithmName
検証プロセスのデータをハッシュするために使用されるハッシュ アルゴリズム。
- signatureFormat
- DSASignatureFormat
signature
のエンコード形式。
戻り値
指定したデータに対してデジタル署名が有効な場合は true
。それ以外の場合は false
。
例外
ハッシュまたは検証操作で発生したエラー。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET