ECDsaOpenSsl.VerifyHash(Byte[], Byte[]) Method

Definition

Verifies that a digital signature is appropriate for the current key and provided data hash.

public:
 override bool VerifyHash(cli::array <System::Byte> ^ hash, cli::array <System::Byte> ^ signature);
public override bool VerifyHash (byte[] hash, byte[] signature);
override this.VerifyHash : byte[] * byte[] -> bool
Public Overrides Function VerifyHash (hash As Byte(), signature As Byte()) As Boolean

Parameters

hash
Byte[]

The hash value of the data to be verified.

signature
Byte[]

The digital signature of the data to be verified against the hash value.

Returns

true if the signature is valid; otherwise, false.

Exceptions

hash or signature is null.

Applies to