DataFlex
DataFlex
Sign String to create a CAdES-T Signature
See more CAdES Examples
This example will sign a string to create a CAdEST-T signature.Note: This example requires Chilkat v9.5.0.78 or greater.
Chilkat DataFlex Downloads
Use ChilkatAx-win32.pkg
Procedure Test
Boolean iSuccess
Handle hoCrypt
Variant vCert
Handle hoCert
Handle hoAttrs
String sStrToSign
Variant vBd
Handle hoBd
String sTemp1
Move False To iSuccess
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Get Create (RefClass(cComChilkatCrypt2)) To hoCrypt
If (Not(IsComObjectCreated(hoCrypt))) Begin
Send CreateComObject of hoCrypt
End
// This example will use the certificate + private key currently inserted into a smartcard reader.
Get Create (RefClass(cComChilkatCert)) To hoCert
If (Not(IsComObjectCreated(hoCert))) Begin
Send CreateComObject of hoCert
End
// If we wish to provide the smartcard PIN (otherwise the user will be prompted by the operating system).
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
// Note: It is also possible to use certs from .pfx/.p12, .pem, or other sources such as
// pre-installed Windows certificates.
Get pvComObject of hoCert to vCert
Get ComSetSigningCert Of hoCrypt vCert To iSuccess
// Use SHA-256 rather than the default of SHA-1
Set ComHashAlgorithm Of hoCrypt To "sha256"
// Create JSON that tells Chilkat what signing attributes to include:
Get Create (RefClass(cComChilkatJsonObject)) To hoAttrs
If (Not(IsComObjectCreated(hoAttrs))) Begin
Send CreateComObject of hoAttrs
End
Get ComUpdateBool Of hoAttrs "contentType" True To iSuccess
Get ComUpdateBool Of hoAttrs "signingTime" True To iSuccess
Get ComUpdateBool Of hoAttrs "messageDigest" True To iSuccess
Get ComUpdateBool Of hoAttrs "signingCertificateV2" True To iSuccess
// A CAdES-T signature is one that includes a timestampToken created by an online TSA (time stamping authority).
// We must include the TSA's URL, as well as a few options to indicate what is desired.
// Except for the TSA URL, the options shown here are typically what you would need.
Get ComUpdateBool Of hoAttrs "timestampToken.enabled" True To iSuccess
Get ComUpdateString Of hoAttrs "timestampToken.tsaUrl" "https://freetsa.org/tsr" To iSuccess
Get ComUpdateBool Of hoAttrs "timestampToken.addNonce" False To iSuccess
Get ComUpdateBool Of hoAttrs "timestampToken.requestTsaCert" True To iSuccess
Get ComUpdateString Of hoAttrs "timestampToken.hashAlg" "sha256" To iSuccess
Get ComEmit Of hoAttrs To sTemp1
Set ComSigningAttributes Of hoCrypt To sTemp1
Move "THIS IS MY ID" To sStrToSign
Get Create (RefClass(cComChilkatBinData)) To hoBd
If (Not(IsComObjectCreated(hoBd))) Begin
Send CreateComObject of hoBd
End
Get ComAppendString Of hoBd sStrToSign "utf-8" To iSuccess
// This creates the CAdES-T signature. During the signature creation, it
// communicates with the TSA to get a timestampToken.
// The contents of bd are signed and replaced with the CAdES-T signature (which embeds the original content).
Get pvComObject of hoBd to vBd
Get ComOpaqueSignBd Of hoCrypt vBd To iSuccess
If (iSuccess <> True) Begin
Get ComLastErrorText Of hoCrypt To sTemp1
Showln sTemp1
Procedure_Return
End
// Get the signature in base64 format:
Get ComGetEncoded Of hoBd "base64_mime" To sTemp1
Showln sTemp1
// Or save the signature to a file.
Get ComWriteFile Of hoBd "qa_output/cades-t_sample.p7m" To iSuccess
Showln "Success."
End_Procedure