Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
Develop platform-independent document signing applications with GroupDocs.Signature for .NET 24.6 (DLLs-only). The DLLs package helps developers with integration and compatibility issues while providing support for GZip and LZip archives signing.
Developers can easily sign and verify documents within GZip and LZip archives with the help of the latest digital signature API for .NET release. The following C# code sample illustrates how to sign a GZip archive.
/// <summary> /// Support Succeeded and Failed list as result of processing archives /// This example demonstrates how to sign an archive document using several SignOptions. You can also sign archives in LZip format /// </summary> using (var signature = new Signature("sample.pdf.gz")) { // create sign options var options = new TextSignOptions("signed!") { // set signature position Left = 100, Top = 100 }; // sign archive to new zip file SignResult result = signature.Sign("output.pdf.gz", options); // analyze signed documents foreach (DocumentResultSignature document in result.Succeeded) { Console.WriteLine($"Document {document.FileName}. Processed: {document.ProcessingTime}, mls"); } if (result.Failed.Count > 0) { Console.WriteLine("\nList of failed documents:"); foreach (DocumentResultSignature document in result.Failed) { Console.WriteLine($"Document {document.FileName}. Processed: {document.ProcessingTime}, mls"); } } }
Source*
GroupDocs.Signature for .NET enables modifying or removing signatures in headers and footers of Word documents. This version lets users elevate their productivity and broaden the feature set of their C# esigning apps running on Windows, Linux, or macOS.
The problems related to esigning password-protected PPTX files have been fixed, allowing you to overcome limitations when signing password-protected PPTX files within your cross-platform .NET applications.
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting GroupDocs.Signature for .NET 24.6 Release Notes.