![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(SQL Server) Sign PDF using PAdES-Baseline-BSee more PDF Signatures ExamplesPAdES-Baseline-B is the most basic, entry-level profile of the PDF Advanced Electronic Signatures (PAdES) standard. It means:
In short: Baseline-B = a standard PDF digital signature that ensures integrity and origin, but without time or revocation guarantees.
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls. -- CREATE PROCEDURE ChilkatSample AS BEGIN DECLARE @hr int -- Important: Do not use nvarchar(max). See the warning about using nvarchar(max). DECLARE @sTmp0 nvarchar(4000) DECLARE @success int SELECT @success = 0 DECLARE @pdf int EXEC @hr = sp_OACreate 'Chilkat.Pdf', @pdf OUT IF @hr <> 0 BEGIN PRINT 'Failed to create ActiveX component' RETURN END -- Load a PDF to be signed. EXEC sp_OAMethod @pdf, 'LoadFile', @success OUT, 'c:/someDir/my.pdf' IF @success = 0 BEGIN EXEC sp_OAGetProperty @pdf, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @pdf RETURN END -- Options for signing are specified in JSON. DECLARE @json int EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @json OUT EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'subFilter', '/ETSI.CAdES.detached' EXEC sp_OAMethod @json, 'UpdateBool', @success OUT, 'signingCertificateV2', 1 EXEC sp_OAMethod @json, 'UpdateBool', @success OUT, 'signingTime', 1 EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'signingAlgorithm', 'pkcs' EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'hashAlgorithm', 'sha256' -- ----------------------------------------------------------- -- The following JSON settings define the signature appearance. EXEC sp_OAMethod @json, 'UpdateInt', @success OUT, 'page', 1 EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'appearance.y', 'top' EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'appearance.x', 'left' EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'appearance.fontScale', '10.0' EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'appearance.text[0]', 'Digitally signed by: cert_cn' EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'appearance.text[1]', 'current_dt' EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'appearance.text[2]', 'Hello 123 ABC' -- -------------------------------------------------------------- -- Load the signing certificate. (Use your own certificate.) -- Note: There are other methods for using a certificate on an HSM (smartcard or token) -- or from other sources, such as a cloud HSM, a Windows installed certificate, -- or other file formats. DECLARE @cert int EXEC @hr = sp_OACreate 'Chilkat.Cert', @cert OUT EXEC sp_OAMethod @cert, 'LoadPfxFile', @success OUT, 'c:/myPfxFiles/myPdfSigningCert.pfx', 'pfxPassword' IF @success = 0 BEGIN EXEC sp_OAGetProperty @cert, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @pdf EXEC @hr = sp_OADestroy @json EXEC @hr = sp_OADestroy @cert RETURN END -- Once we have the certificate object, tell the PDF object to use it for signing EXEC sp_OAMethod @pdf, 'SetSigningCert', @success OUT, @cert IF @success = 0 BEGIN EXEC sp_OAGetProperty @pdf, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @pdf EXEC @hr = sp_OADestroy @json EXEC @hr = sp_OADestroy @cert RETURN END -- Sign the PDF, creating the output file. DECLARE @outFilePath nvarchar(4000) SELECT @outFilePath = 'c:/someDir/mySigned.pdf' EXEC sp_OAMethod @pdf, 'SignPdf', @success OUT, @json, @outFilePath IF @success = 0 BEGIN EXEC sp_OAGetProperty @pdf, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @pdf EXEC @hr = sp_OADestroy @json EXEC @hr = sp_OADestroy @cert RETURN END PRINT 'Success.' EXEC @hr = sp_OADestroy @pdf EXEC @hr = sp_OADestroy @json EXEC @hr = sp_OADestroy @cert END GO |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.