DataFlex
DataFlex
Create ICP-Brasil Compliant CMS Signature
See more CAdES Examples
Demonstrates how to create a .p7s signature that contains a data file, which in this case is a PDF. The .p7s will be compliant with the ICP-Brazil Digital Signature Standard.The .p7s file created by this example can be verified at ICP-Brasil Online Verifier
Chilkat DataFlex Downloads
Use ChilkatAx-win32.pkg
Procedure Test
Boolean iSuccess
Handle hoCrypt
String sInFile
Variant vBd
Handle hoBd
Variant vCert
Handle hoCert
Handle hoJsonSigningAttrs
String sTemp1
Move False To iSuccess
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// ------------------------------------------------------------------------------------------------------
// Note: This example creates a CMS signature (.p7s) that contains the PDF.
// It is different than signing a PDF. To sign a PDF where the resulting PDF contains the CMS signature,
// see this example: Sign PDF for ICP-Brasil
// ------------------------------------------------------------------------------------------------------
Get Create (RefClass(cComChilkatCrypt2)) To hoCrypt
If (Not(IsComObjectCreated(hoCrypt))) Begin
Send CreateComObject of hoCrypt
End
// Any type of file can be signed. It doesn't have to be a PDF.
Move "qa_data/pdf/helloWorld.pdf" To sInFile
Get Create (RefClass(cComChilkatBinData)) To hoBd
If (Not(IsComObjectCreated(hoBd))) Begin
Send CreateComObject of hoBd
End
Get ComLoadFile Of hoBd sInFile To iSuccess
If (iSuccess = False) Begin
Showln "Failed to load " sInFile
Procedure_Return
End
// We'll be using a certificate w/ private key stored on a smartcard for signing.
Get Create (RefClass(cComChilkatCert)) To hoCert
If (Not(IsComObjectCreated(hoCert))) Begin
Send CreateComObject of hoCert
End
// If the smartcard or token requires a PIN, we can set it here to avoid the dialog...
Set ComSmartCardPin Of hoCert To "000000"
Get ComLoadFromSmartcard Of hoCert "" To iSuccess
If (iSuccess <> True) Begin
Get ComLastErrorText Of hoCert To sTemp1
Showln sTemp1
Procedure_Return
End
// Tell the crypt component to use this cert.
Get pvComObject of hoCert to vCert
Get ComSetSigningCert Of hoCrypt vCert To iSuccess
If (iSuccess <> True) Begin
Get ComLastErrorText Of hoCrypt To sTemp1
Showln sTemp1
Procedure_Return
End
// Set properties for signing...
Set ComHashAlgorithm Of hoCrypt To "sha256"
Get Create (RefClass(cComChilkatJsonObject)) To hoJsonSigningAttrs
If (Not(IsComObjectCreated(hoJsonSigningAttrs))) Begin
Send CreateComObject of hoJsonSigningAttrs
End
Get ComUpdateInt Of hoJsonSigningAttrs "contentType" 1 To iSuccess
Get ComUpdateInt Of hoJsonSigningAttrs "signingTime" 1 To iSuccess
Get ComUpdateInt Of hoJsonSigningAttrs "messageDigest" 1 To iSuccess
Get ComUpdateBool Of hoJsonSigningAttrs "signingCertificateV2" True To iSuccess
// Listed here are the currently existing profiles. (Chilkat will add additional ICP Brasil policy profiles in future versions as new ones are created.)
// See https://www.gov.br/iti/pt-br/assuntos/repositorio/artefatos-de-assinatura-digital for more information.
//
// PA_AD_RA --> 2.16.76.1.7.1.5.1
// PA_AD_RA_v1_1 --> 2.16.76.1.7.1.5.1.1
// PA_AD_RA_v1_2 --> 2.16.76.1.7.1.5.1.2
// PA_AD_RA_v2_0 --> 2.16.76.1.7.1.5.2
// PA_AD_RA_v2_1 --> 2.16.76.1.7.1.5.2.1
// PA_AD_RA_v2_2 --> 2.16.76.1.7.1.5.2.2
// PA_AD_RA_v2_3 --> 2.16.76.1.7.1.5.2.3
// PA_AD_RA_v2_4 --> 2.16.76.1.7.1.5.2.4
// PA_AD_RB --> 2.16.76.1.7.1.1.1
// PA_AD_RB_v1_1 --> 2.16.76.1.7.1.1.1.1
// PA_AD_RB_v2_0 --> 2.16.76.1.7.1.1.2
// PA_AD_RB_v2_1 --> 2.16.76.1.7.1.1.2.1
// PA_AD_RB_v2_2 --> 2.16.76.1.7.1.1.2.2
// PA_AD_RB_v2_3 --> 2.16.76.1.7.1.1.2.3
// PA_AD_RC --> 2.16.76.1.7.1.4.1
// PA_AD_RC_v1_1 --> 2.16.76.1.7.1.4.1.1
// PA_AD_RC_v2_0 --> 2.16.76.1.7.1.4.2
// PA_AD_RC_v2_1 --> 2.16.76.1.7.1.4.2.1
// PA_AD_RC_v2_2 --> 2.16.76.1.7.1.4.2.2
// PA_AD_RC_v2_3 --> 2.16.76.1.7.1.4.2.3
// PA_AD_RT --> 2.16.76.1.7.1.2.1
// PA_AD_RT_v1_1 --> 2.16.76.1.7.1.2.1.1
// PA_AD_RT_v2_0 --> 2.16.76.1.7.1.2.2
// PA_AD_RT_v2_1 --> 2.16.76.1.7.1.2.2.1
// PA_AD_RT_v2_2 --> 2.16.76.1.7.1.2.2.2
// PA_AD_RT_v2_3 --> 2.16.76.1.7.1.2.2.3
// PA_AD_RV --> 2.16.76.1.7.1.3.1
// PA_AD_RV_v1_1 --> 2.16.76.1.7.1.3.1.1
// PA_AD_RV_v2_0 --> 2.16.76.1.7.1.3.2
// PA_AD_RV_v2_1 --> 2.16.76.1.7.1.3.2.1
// PA_AD_RV_v2_2 --> 2.16.76.1.7.1.3.2.2
// PA_AD_RV_v2_3 --> 2.16.76.1.7.1.3.2.3
// Set the policy OID and the profile name
Get ComUpdateString Of hoJsonSigningAttrs "policyId.id" "2.16.76.1.7.1.1.2.3" To iSuccess
Get ComUpdateString Of hoJsonSigningAttrs "policyId.profile" "PA_AD_RB_v2_3" To iSuccess
Get ComEmit Of hoJsonSigningAttrs To sTemp1
Set ComSigningAttributes Of hoCrypt To sTemp1
// The Brazil government validator requires the ASN.1 data to be in "constructed octets" form..
Set ComUncommonOptions Of hoCrypt To "UseConstructedOctets,OmitAlgorithmIdNull"
Set ComIncludeCertChain Of hoCrypt To False
// Sign.
Get pvComObject of hoBd to vBd
Get ComOpaqueSignBd Of hoCrypt vBd To iSuccess
If (iSuccess = False) Begin
Get ComLastErrorText Of hoCrypt To sTemp1
Showln sTemp1
Procedure_Return
End
// Save to a .p7s
Get ComWriteFile Of hoBd "qa_output/helloWorld.pdf.p7s" To iSuccess
Showln "Success"
End_Procedure