This function verifies the given bytes.

Namespace: TallComponents.PDF.DigitalSignatures
Assembly: TallComponents.PDF.Kit (in TallComponents.PDF.Kit.dll) Version: 3.0.69.1

Syntax

C#
public abstract bool Verify(
	byte[] bytesToVerify,
	byte[] digest,
	byte[][] certificates
)
Visual Basic
Public MustOverride Function Verify ( _
	bytesToVerify As Byte(), _
	digest As Byte(), _
	certificates As Byte()() _
) As Boolean

Parameters

bytesToVerify
Type: array<System..::..Byte>[]()[][]
The bytes to verify.
digest
Type: array<System..::..Byte>[]()[][]
The digest calculated by the Sign function.
certificates
Type: array<array<System..::..Byte>[]()[][]>[]()[][]
The certificate info if not present in the digest (can be nullNothingnullptra null reference (Nothing in Visual Basic)).

Return Value

True if the bytesToVerify are correct, otherwise false.

See Also