Spire.XLS is a professional Excel API that enables developers to create, manage, manipulate, convert and print Excel worksheets. Get free and professional technical support for Spire.XLS for .NET, Java, Android, C++, Python.

Wed May 13, 2020 8:00 am

Hi,
Is it anyhow possible to add multiple digital signature to an excel file or word file using Spire.XLS or Spire.Doc in a .net project?
I already have Spire.PDF in my .net application and it's working just fine and was wondering if Spire.DOC and Spire.XLS can also be in use to put digital signature on them.
Thanks in advance.

sayan1995
 
Posts: 7
Joined: Wed Sep 18, 2019 7:35 am

Wed May 13, 2020 8:38 am

Hello,

Thanks for your inquiry.
Our Spire.Doc supports adding digital signature to Word documents, please refer to the tutorial below.
Add Digital Signature to Word in C#

But our Spire.XLS doesn't support this feature yet. We have added it to our further upgrade list with the ticket SPIREXLS-1863. If it can be achieved in the future, we will let you know.

Sincerely,
Rachel
E-iceblue support team
User avatar

rachel.lei
 
Posts: 1571
Joined: Tue Jul 09, 2019 2:22 am

Fri Nov 06, 2020 11:07 am

Hello,

Thanks for your patience.
Glad to inform you that we just released Spire.XLS Pack(Hotfix) Version:10.11.2 that supports adding digital signature. Welcome to download it from the following links.
Website link: https://www.e-iceblue.com/Download/down ... t-now.html
NuGet link: https://www.nuget.org/packages/Spire.XLS/10.11.2

Code example:
Code: Select all
Workbook workbook = new Workbook();
workbook.LoadFromFile(inputFile);
//Add digital signature
X509Certificate2 cert = new X509Certificate2(inputFile_pfx, "e-iceblue");
DateTime certtime = new DateTime(2020, 7, 1, 7, 10, 36);
IDigitalSignatures dsc = workbook.AddDigitalSignature(cert, "e-iceblue", certtime);
//delete digital signature
workbook.RemoveAllDigitalSignatures();
workbook.SaveToFile(outputFile, FileFormat);


Sincerely,
Rachel
E-iceblue support team
User avatar

rachel.lei
 
Posts: 1571
Joined: Tue Jul 09, 2019 2:22 am

Wed Nov 11, 2020 3:42 am

Hello,

Greetings from E-iceblue!
Have you tested the new feature? Any feedback would be greatly appreciated!

Sincerely,
Rachel
E-iceblue support team
User avatar

rachel.lei
 
Posts: 1571
Joined: Tue Jul 09, 2019 2:22 am

Return to Spire.XLS