Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(PureBasic) 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.
IncludeFile "CkCert.pb" IncludeFile "CkJsonObject.pb" IncludeFile "CkCrypt2.pb" Procedure ChilkatExample() ; This example assumes the Chilkat API to have been previously unlocked. ; See Global Unlock Sample for sample code. crypt.i = CkCrypt2::ckCreate() If crypt.i = 0 Debug "Failed to create object." ProcedureReturn EndIf cert.i = CkCert::ckCreate() If cert.i = 0 Debug "Failed to create object." ProcedureReturn EndIf ; 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.i = CkCert::ckLoadFromSmartcard(cert,"") If success <> 1 Debug CkCert::ckLastErrorText(cert) CkCrypt2::ckDispose(crypt) CkCert::ckDispose(cert) ProcedureReturn EndIf ; Tell the crypt component to use this cert. success = CkCrypt2::ckSetSigningCert(crypt,cert) If success <> 1 Debug CkCrypt2::ckLastErrorText(crypt) CkCrypt2::ckDispose(crypt) CkCert::ckDispose(cert) ProcedureReturn EndIf cmsOptions.i = CkJsonObject::ckCreate() If cmsOptions.i = 0 Debug "Failed to create object." ProcedureReturn EndIf CkJsonObject::ckUpdateBool(cmsOptions,"DigestData",1) CkJsonObject::ckUpdateBool(cmsOptions,"OmitAlgorithmIdNull",1) CkCrypt2::setCkCmsOptions(crypt, CkJsonObject::ckEmit(cmsOptions)) ; The CadesEnabled property applies to all methods that create CMS/PKCS7 signatures. ; To create a CAdES-BES signature, set this property equal to true. CkCrypt2::setCkCadesEnabled(crypt, 1) CkCrypt2::setCkHashAlgorithm(crypt, "sha256") jsonSigningAttrs.i = CkJsonObject::ckCreate() If jsonSigningAttrs.i = 0 Debug "Failed to create object." ProcedureReturn EndIf CkJsonObject::ckUpdateInt(jsonSigningAttrs,"contentType",1) CkJsonObject::ckUpdateInt(jsonSigningAttrs,"signingTime",1) CkJsonObject::ckUpdateInt(jsonSigningAttrs,"messageDigest",1) CkJsonObject::ckUpdateInt(jsonSigningAttrs,"signingCertificateV2",1) CkCrypt2::setCkSigningAttributes(crypt, CkJsonObject::ckEmit(jsonSigningAttrs)) ; 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: CkCrypt2::setCkIncludeCertChain(crypt, 0) ; Make sure we sign the utf-8 byte representation of the JSON string CkCrypt2::setCkCharset(crypt, "utf-8") ; Create the CAdES-BES signature, which does not contain the data being signed. pathOfFileToSign.s = "someDir/someFile" outputPath.s = "outDir/someFile.p7s" success = CkCrypt2::ckCreateP7S(crypt,pathOfFileToSign,outputPath) If success <> 1 Debug CkCrypt2::ckLastErrorText(crypt) CkCrypt2::ckDispose(crypt) CkCert::ckDispose(cert) CkJsonObject::ckDispose(cmsOptions) CkJsonObject::ckDispose(jsonSigningAttrs) ProcedureReturn EndIf Debug "Success!" CkCrypt2::ckDispose(crypt) CkCert::ckDispose(cert) CkJsonObject::ckDispose(cmsOptions) CkJsonObject::ckDispose(jsonSigningAttrs) ProcedureReturn EndProcedure |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.