VerifyHash - plug compatible with RSACryptoServiceProvider.VerifyHash

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,
	string hash_algorithm_oid,
	byte[] signature
)
Visual Basic
Public Function VerifyHash ( 
	hash As Byte(),
	hash_algorithm_oid As String,
	signature As Byte()
) As Boolean
Visual C++
public:
bool VerifyHash(
	array<unsigned char>^ hash, 
	String^ hash_algorithm_oid, 
	array<unsigned char>^ signature
)
F#
member VerifyHash : 
        hash : byte[] * 
        hash_algorithm_oid : string * 
        signature : byte[] -> bool 

Parameters

hash
Type: array<System..::..Byte>[]()[][]
hash_algorithm_oid
Type: System..::..String
signature
Type: array<System..::..Byte>[]()[][]

Return Value

Type: Boolean

See Also