Verifies the signature.

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

Syntax

Visual Basic (Declaration)
Public Function Verify As Boolean
C#
public bool Verify()
Visual C++
public:
bool Verify()
JavaScript
function verify();

Return Value

true if the signature is valid

Remarks

This method verifies all the signatures in the signed document and returns true only if all signatures are valid.
If the signature is detached it thorws ERROR_NODETACHED_SIGNATURE exception.
For detached signature use the method verify(byte[] signedContent)

See Also