Embedded Timestamp Tokens with custom signing API on Server/Desktop

The custom signing API also allows the creation and insertion of embedded secure (signed) timestamp tokens, which is a requirement of certain higher levels of PAdES-format signature conformance.

It is necessary to add to the VerificationOptions a trusted root certificate corresponding to the chain used by the timestamp authority to sign the timestamp token, in order for the timestamp response to be verifiable during embedded timestamp creation.

By default, we only check online for revocation of certificates using the newer and lighter OCSP protocol as opposed to CRL, due to lower resource usage and greater reliability. However, it may be necessary to enable online CRL revocation checking in order to verify some timestamps (i.e. those that do not have an OCSP responder URL for all non-trusted certificates).

1TimestampingConfiguration tst_config = new TimestampingConfiguration(in_timestamp_authority_url);
2VerificationOptions opts = new VerificationOptions(VerificationOptions.SignatureVerificationSecurityLevel.e_compatibility_and_archiving);
3opts.AddTrustedCertificate(in_timestamp_authority_root_certificate_path);
4opts.EnableOnlineCRLRevocationChecking(true);
5TimestampingResult result = digsig_field.GenerateContentsWithEmbeddedTimestamp(tst_config, opts);
6
7if (!result.GetStatus())
8{
9 Console.WriteLine(result.GetString());
10 throw new Exception();
11}
12doc.SaveCustomSignature(result.GetData(), digsig_field, in_outpath);

Did you find this helpful?

Trial setup questions?

Ask experts on Discord

Need other help?

Contact Support

Pricing or product questions?

Contact Sales