PdfDocumentSigner.AddToDss(String, IList<Byte[]>, IList<Byte[]>, IList<Byte[]>) Method
Adds information about the specified signature to the Document Security Store (DSS).
Namespace: DevExpress.Pdf
Assembly: DevExpress.Docs.v24.2.dll
NuGet Package: DevExpress.Document.Processor
#Declaration
#Parameters
Name | Type | Description |
---|---|---|
signature |
String | The name of the form field that contains the target signature. |
certificates | IList<Byte[]> | A list of certificates used to create the certificate chain. |
crls | IList<Byte[]> | A list of DER-encoded Certificate |
ocsp | IList<Byte[]> | A list of DER-encoded OCSPResponse ASN. |
#Exceptions
Type | Description |
---|---|
Argument |
Occurs if the specified form field is not signed. |
#Remarks
The code sample below retrieves the name of the first signature field, adds the related signature’s information to the DSS, and applies a timestamp to the document.
using (var signer = new PdfDocumentSigner(@"signed.pdf"))
{
ITsaClient tsaClient = new TsaClient(new Uri(@"https://freetsa.org/tsr"), HashAlgorithmType.SHA256);
string signatureName = signer.GetSignatureFieldNames(false)[0];
// Create a provider that retrieves certificates from a store:
using (var certificateStoreProvider =
new CertificateStoreProvider(new X509Store(StoreLocation.CurrentUser), true))
{
// Add the signature to the security store
// and specify the CrlClient and OcspClient objects
// used to check the certificates' revocation status:
signer.AddToDss(signatureName, new CrlClient(), new OcspClient(), certificateStoreProvider);
}
signer.SaveDocument(@"signedLTV.pdf", new[] { new PdfSignatureBuilder(new PdfTimeStamp(tsaClient)) });
}