VerifyData - plug compatible with RSACryptoServiceProvider.VerifyData

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

Syntax

C#
public bool VerifyData(
	byte[] data,
	HashAlgorithm hasher,
	byte[] signature
)
Visual Basic
Public Function VerifyData ( 
	data As Byte(),
	hasher As HashAlgorithm,
	signature As Byte()
) As Boolean
Visual C++
public:
bool VerifyData(
	array<unsigned char>^ data, 
	HashAlgorithm^ hasher, 
	array<unsigned char>^ signature
)
F#
member VerifyData : 
        data : byte[] * 
        hasher : HashAlgorithm * 
        signature : byte[] -> bool 

Parameters

data
Type: array<System..::..Byte>[]()[][]
hasher
Type: System.Security.Cryptography..::..HashAlgorithm
signature
Type: array<System..::..Byte>[]()[][]

Return Value

Type: Boolean

See Also