CryptSignerVerifyHash Method
Verifies that the specified signature matches the specified hash.
Namespace: SysadminsLV.PKI.CryptographyAssembly: SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 4.0.1
public bool VerifyHash(
byte[] hash,
byte[] signature
)
Public Function VerifyHash (
hash As Byte(),
signature As Byte()
) As Boolean
public:
virtual bool VerifyHash(
array<unsigned char>^ hash,
array<unsigned char>^ signature
) sealed
abstract VerifyHash :
hash : byte[] *
signature : byte[] -> bool
override VerifyHash :
hash : byte[] *
signature : byte[] -> bool
- hash Byte
- The hash value of the signed data.
- signature Byte
- The signature data to be verified.
BooleanTrue if hash matches the one stored in signature, otherwise
False.
ICryptSignerVerifyHash(Byte, Byte)