Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(Excel) Create Egypt ITIDA CAdES-BES .p7s Signature (File to File)See more Egypt ITIDA ExamplesDemonstrates how to create a .p7s signature that fits Egypt's ITIDA requirements.
' This example assumes the Chilkat API to have been previously unlocked. ' See Global Unlock Sample for sample code. Dim crypt As Chilkat.Crypt2 Set crypt = Chilkat.NewCrypt2 Dim cert As Chilkat.Cert Set cert = Chilkat.NewCert ' There are many ways to load the certificate. ' This example was created for a customer using an ePass2003 USB token. ' Assuming the USB token is the only source of a hardware-based private key.. success = cert.LoadFromSmartcard("") If (success <> True) Then Debug.Print cert.LastErrorText Exit Sub End If ' Tell the crypt component to use this cert. success = crypt.SetSigningCert(cert) If (success <> True) Then Debug.Print crypt.LastErrorText Exit Sub End If Dim cmsOptions As Chilkat.JsonObject Set cmsOptions = Chilkat.NewJsonObject Dim success As Boolean success = cmsOptions.UpdateBool("DigestData",True) success = cmsOptions.UpdateBool("OmitAlgorithmIdNull",True) crypt.CmsOptions = cmsOptions.Emit() ' The CadesEnabled property applies to all methods that create CMS/PKCS7 signatures. ' To create a CAdES-BES signature, set this property equal to true. crypt.CadesEnabled = True crypt.HashAlgorithm = "sha256" Dim jsonSigningAttrs As Chilkat.JsonObject Set jsonSigningAttrs = Chilkat.NewJsonObject success = jsonSigningAttrs.UpdateInt("contentType",1) success = jsonSigningAttrs.UpdateInt("signingTime",1) success = jsonSigningAttrs.UpdateInt("messageDigest",1) success = jsonSigningAttrs.UpdateInt("signingCertificateV2",1) crypt.SigningAttributes = jsonSigningAttrs.Emit() ' By default, all the certs in the chain of authentication are included in the signature. ' If desired, we can choose to only include the signing certificate: crypt.IncludeCertChain = False ' Make sure we sign the utf-8 byte representation of the JSON string crypt.Charset = "utf-8" ' Create the CAdES-BES signature, which does not contain the data being signed. pathOfFileToSign = "someDir/someFile" outputPath = "outDir/someFile.p7s" success = crypt.CreateP7S(pathOfFileToSign,outputPath) If (success <> True) Then Debug.Print crypt.LastErrorText Exit Sub End If Debug.Print "Success!" |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.