ECDsa.VerifyHashCore メソッド

定義

指定されたハッシュに対してデジタル署名が有効であることを確認します。

protected:
 virtual bool VerifyHashCore(ReadOnlySpan<System::Byte> hash, ReadOnlySpan<System::Byte> signature, System::Security::Cryptography::DSASignatureFormat signatureFormat);
protected virtual bool VerifyHashCore(ReadOnlySpan<byte> hash, ReadOnlySpan<byte> signature, System.Security.Cryptography.DSASignatureFormat signatureFormat);
abstract member VerifyHashCore : ReadOnlySpan<byte> * ReadOnlySpan<byte> * System.Security.Cryptography.DSASignatureFormat -> bool
override this.VerifyHashCore : ReadOnlySpan<byte> * ReadOnlySpan<byte> * System.Security.Cryptography.DSASignatureFormat -> bool
Protected Overridable Function VerifyHashCore (hash As ReadOnlySpan(Of Byte), signature As ReadOnlySpan(Of Byte), signatureFormat As DSASignatureFormat) As Boolean

パラメーター

hash
ReadOnlySpan<Byte>

署名されたハッシュ。

signature
ReadOnlySpan<Byte>

確認する署名。

signatureFormat
DSASignatureFormat

signatureのエンコード形式。

返品

true 指定されたデータに対してデジタル署名が有効な場合。それ以外の場合は false

例外

検証操作でエラーが発生しました。

適用対象