|
Sign a document timestamp signature field using a Timestamping
Authority (TSA).
The signature must be an unsigned RFC 3161 timestamp signature.
If you need to create such a signature you can do so using the
XForm.AddDocTimestamp
method.
You need to set one of either the TimestampServiceUrl
or the CustomSigner
properties before calling this function. The TimestampServiceUrl is
preferred over the CustomSigner if both are set.
If you are using a CustomSigner the delegate method will be
passed the raw SHA256 digest of the object to be time stamped (i.e.
the document contents). It should return a DER representation of a
timestamp token as defined in RFC 3161.
The timestamp signing operation is queued so you will typically
want to call Doc.Save or Commit after calling this function.
|