為 Word 添加數(shù)字簽名
Spire.Doc for .NET是一款專門對 Word 文檔進(jìn)行操作的 .NET 類庫。在于幫助開發(fā)人員無需安裝 Microsoft Word情況下,輕松快捷高效地創(chuàng)建、編輯、轉(zhuǎn)換和打印 Microsoft Word 文檔。擁有近10年專業(yè)開發(fā)經(jīng)驗(yàn)Spire系列辦公文檔開發(fā)工具,專注于創(chuàng)建、編輯、轉(zhuǎn)換和打印Word/PDF/Excel等格式文件處理,小巧便捷。
E-iceblue 功能類庫Spire 系列文檔處理組件均由中國本土團(tuán)隊(duì)研發(fā),不依賴第三方軟件,不受其他國家的技術(shù)或法律法規(guī)限制,同時適配國產(chǎn)操作系統(tǒng)如中科方德、中標(biāo)麒麟等,兼容國產(chǎn)文檔處理軟件 WPS(如 .wps/.et/.dps 等格式
Spire.Doc for.NET 最新下載
本文演示了如何使用 Spire.Doc 將數(shù)字簽名添加到 Word 文檔。
Spire.Doc 為我們提供了以下方法來為 Word 文檔添加數(shù)字簽名:
- public void SaveToFile(string fileName, FileFormat fileFormat, byte[] certificateData, string securePassword);
- public void SaveToFile(string filename, FileFormat fileFormat, string certificatePath, string securePassword);
- public void SaveToStream(Stream stream, FileFormat fileFormat, byte[] certificateData, string securePassword);
- public void SaveToStream(Stream stream, FileFormat fileFormat, string certificatePath, string securePassword);
- public static byte[] Sign(Stream sourceStream, byte[] certificateData, string securePassword);
- public static byte[] Sign(Stream sourceStream, string certificatePath, string securePassword);
在下面的示例中,我們將看到如何將數(shù)字簽名添加到 Word 文檔,并使用帶有 Document 對象的 SaveToFile 方法將結(jié)果保存到文件中。
//Load the Word document Document doc = new Document("sample.docx"); //Sign the document with certificate and save to file doc.SaveToFile("AddDigitalSignature.docx", FileFormat.Docx2013, "gary.pfx", "e-iceblue");
我們還可以將數(shù)字簽名添加到 Word 文檔,并使用帶有 Document 對象的 SaveToStream方法將結(jié)果保存到流中 。
//Load the Word document Document doc = new Document("sample.docx"); //Create a FileStream FileStream fs = new FileStream(); //Sign the document with certificate and save to stream doc.SaveToStream(fs, FileFormat.Docx2013, "gary.pfx", "e-iceblue"); fs.Flush();
下面的示例演示如何使用帶有 Document 類的 Sign 方法將數(shù)字簽名添加到 Word 文檔。
//Read the Word document into a FileStream FileStream fs = File.OpenRead("sample.docx"); //Sign the document using Sign method with Document class byte[] result = Document.Sign(fs, "gary.pfx", "e-iceblue"); File.WriteAllBytes("AddDigitalSignature.docx", result); fs.Flush();
輸出文件:
以上便是如何使用 Spire.Doc 將數(shù)字簽名添加到 Word 文檔的教程,如果您有其他問題也可以繼續(xù)瀏覽本系列文章,獲取相關(guān)教程,你還可以給我留言或者加入我們的官方技術(shù)交流群。
歡迎下載|體驗(yàn)更多E-iceblue產(chǎn)品
獲取更多信息請咨詢慧都在線客服 ;技術(shù)交流Q群(767755948)