Verify a signed PKCS#1 message digest

Namespace: MonoSoftware.Core.Cryptography
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public bool VerifyHash(
	byte[] hash,
	byte[] signature,
	EzRsa..::..HASH_ALGORITHM hash_algorithm
)
Visual Basic
Public Function VerifyHash ( 
	hash As Byte(),
	signature As Byte(),
	hash_algorithm As EzRsa..::..HASH_ALGORITHM
) As Boolean
Visual C++
public:
bool VerifyHash(
	array<unsigned char>^ hash, 
	array<unsigned char>^ signature, 
	EzRsa..::..HASH_ALGORITHM hash_algorithm
)
F#
member VerifyHash : 
        hash : byte[] * 
        signature : byte[] * 
        hash_algorithm : EzRsa..::..HASH_ALGORITHM -> bool 

Parameters

hash
Type: array<System..::..Byte>[]()[][]
signature
Type: array<System..::..Byte>[]()[][]
hash_algorithm
Type: MonoSoftware.Core.Cryptography..::..EzRsa..::..HASH_ALGORITHM
Hash algorithm

Return Value

Type: Boolean

See Also