Some test text!
iOS / Guides / Digital Signature Validation
You can validate signatures in signed documents by verifying signers using the PTDigitalSignaturesViewController
.
To verify your digital signatures, you can show the DigitalSignatureListDialog
using the code below:
-(void)showDigitalSignatureListWithToolManager:(PTToolManager*)toolManager
{
// toolManager must have a reference to the root certificate as described above
PTDigitalSignaturesViewController *digitalSignaturesViewController = [[PTDigitalSignaturesViewController allocOverridden] initWithToolManager:toolManager];
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:digitalSignaturesViewController];
[self presentViewController:navigationController animated:YES completion:nil];
}
-(void)showDigitalSignatureListWithToolManager:(PTToolManager*)toolManager
{
// toolManager must have a reference to the root certificate as described above
PTDigitalSignaturesViewController *digitalSignaturesViewController = [[PTDigitalSignaturesViewController allocOverridden] initWithToolManager:toolManager];
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:digitalSignaturesViewController];
[self presentViewController:navigationController animated:YES completion:nil];
}
In this list, you will be able to view digital signature information such as the signer's name, time of signing, signature validity, etc. Additionally you can tap on Signature Properties to view additional signature details.
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales