Verifies the specified signature.
Namespace:
Rebex.Security.Cryptography
Assembly:
Rebex.Common (in Rebex.Common.dll)
Syntax
Visual Basic |
---|
Public Function VerifyHash ( _ hash As Byte(), _ hashAlgorithm As SignatureHashAlgorithm, _ signature As Byte() _ ) As Boolean |
C# |
---|
public bool VerifyHash( byte[] hash, SignatureHashAlgorithm hashAlgorithm, byte[] signature ) |
Parameters
- hash
- Type: array<System..::..Byte>[]()[][]
The hash value of the signed data.
- hashAlgorithm
- Type: Rebex.Security.Certificates..::..SignatureHashAlgorithm
A hash algorithm used to create the hash value.
- signature
- Type: array<System..::..Byte>[]()[][]
The signature for the specified hash value.