龙空技术网

如何使用 FastReport VCL 对文件进行数字签名?

慧都科技 63

前言:

此时同学们对“数字签名算法的编程实现”大体比较看重,我们都想要了解一些“数字签名算法的编程实现”的相关内容。那么小编也在网上搜集了一些有关“数字签名算法的编程实现””的相关知识,希望小伙伴们能喜欢,你们一起来了解一下吧!

FastReport VCL是用于在软件中集成商务智能的现代解决方案。它提供了可视化模板设计器,可以访问最受欢迎的数据源,报告引擎,预览,将过滤器导出为30多种格式,并可以部署到云,Web,电子邮件和打印中。

适用于所有 Delphi 的 FastReport VCL V2022.3.0试用版下载慧都资源下载-慧都网

我们很难想象没有电子文档管理的生活,电子文档的文件不易丢失,易于存储,并且可以方便转移。但众所周知,只有签署的文件才能生效。

电子签名是保证唯一性和原创性的密码,这样可以建立明确的作者身份并保护文档免受更改。

但是,对每个生成的 PDF 文件进行签名可能非常耗时。如果您有上千个或更多生成的文件怎么办——您还要手动签署它们吗?当然不是。FastReport VCL可以帮助您对生成的文件进行签名。接下来,我们将演示数字签名的示例。

为清楚起见,我们将使用一个小型应用程序将文件导出为 PDF 并对其进行签名。

procedure TForm1.Button1Click(Sender: TObject); const  FR3FileName = 'Signatures.fr3'; var  PDFExport: TfrxPDFExport;  Report: TfrxReport; begin  Report := TfrxReport.Create(nil);  try  Report.LoadFromFile(FR3FileName);  Report.PrepareReport; // upload and prepare a report    PDFExport := TfrxPDFExport.Create(nil);  try  PDFExport.Report := Report;  PDFExport.ShowDialog := False;      PDFExport.FileName := ExtractFileName(FR3FileName) + '.pdf';  Report.Export(PDFExport); // export the report  SignExport(PDFExport); // sign the file  finally  PDFExport.Free;  end;  finally  Report.Free;  end; end;   procedure SignExport(PDFExport: TfrxPDFExport); const  CertificatePath = 'JaneDoe.pfx'; // The name of our certificate  PasCert = '123'; // certificate password var  Lookup: TCertificateStoreLookup;  FS: TfrxFileSignature;  FSO: Integer; begin  Lookup := TCertificateStoreLookup.Create;  Lookup.IgnoreCase := true;  Lookup.CertificatePath := CertificatePath;    FSO := FileSignatureOptions(  true, // Detached = true Signature in a detached file  false, // Chain = false Certificate chain  false, // OnlyGOST= true GOST certificate  true, // DebugLog = true Debugging Information  true); // PFX = false (true) indicates that the certificate should be searched in the pfx/p12 file.  At the same time, the file name and, possibly, the password must be specified.    FS := TfrxFileSignature.Create(  Lookup,  PDFExport.FileName, // PDF file name  PDFExport.FileName + '.sig', // Name of the generated signature  AnsiString(PasCert),  FSO);    FS.Sign;  FS.Free;  Lookup.Free; end;

写完程序,让我们继续运行它。

启动后,点击“导出”按钮。然后我们得到一个带有签名文件的签名PDF文件:

我们应该检查 PDF 文件是否正确签名。为此,打开控制台并输入以下命令:

openssl pkcs12 -in JohnDoe.pfx -out JohnDoe.pem

我们输入密码并使用以下命令检查后:

openssl smime -verify  -binary  -inform DER -in Signatures.fr3.pdf.sig -content Signatures.fr3.pdf  -certfile JohnDoe.pem -nointern  -noverify  1 >  / dev / null

此屏幕截图显示 PDF 文件已通过签名检查,所以我们做到了。

因此,我们用FastReport VCL快速地得到了一个正确导出的PDF文件的签名

标签: #数字签名算法的编程实现