Verifies the signature.

Namespace:  Cryptware.NDigitSign
Assembly:  NDigitSign (in NDigitSign.dll)

Syntax

Visual Basic (Declaration)
Public Function Verify ( _
	signedContent As Byte() _
) As Boolean
C#
public bool Verify(
	byte[] signedContent
)
Visual C++
public:
bool Verify(
	array<unsigned char>^ signedContent
)
JavaScript
function verify(signedContent);

Parameters

signedContent
Type: array<System..::..Byte>[]()[]

Return Value

true if the signature is valid

Remarks

This method verifies all the signatures in the detachet signed document and returns true only if all signatures are valid.
If the signature is not detached it thorws ERROR_DETACHED_SIGNATURE exception.
For not detached signature use the method verify()

See Also