Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

AutoIt Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Cloud Signature CSC
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(AutoIt) Create P7M for ISO20022 Message (Customer Credit Transfer)

Demonstrates how to create a .p7m (signed data) for an ISO20022 XML message using an HSM such as that provided by Swift 3SKey or by banks. Also shows how to validate and extract the XML message.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

; This example requires the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.

; What is a .p7m file?

; Load the signing certificate from the connected HSM.
$oCert = ObjCreate("Chilkat.Cert")
Local $bSuccess = $oCert.LoadFromSmartcard("")
If ($bSuccess = False) Then
    ConsoleWrite($oCert.LastErrorText & @CRLF)
    Exit
EndIf

$oCrypt = ObjCreate("Chilkat.Crypt2")

; Tell the crypt class to use the cert on the ePass2003 token.
$bSuccess = $oCrypt.SetSigningCert($oCert)
If ($bSuccess <> True) Then
    ConsoleWrite($oCrypt.LastErrorText & @CRLF)
    Exit
EndIf

; The CadesEnabled property applies to all methods that create CMS/PKCS7 signatures. 
; To create a CAdES-BES signature, set this property equal to true. 
$oCrypt.CadesEnabled = True

$oCrypt.HashAlgorithm = "sha256"

; The XML file to be signed and encapsulated in the signature looks like this:

; <Document xmlns="urn:iso:std:iso:20022:tech:xsd:pain.001.001.02">
;     <CstmrCdtTrfInitn>
;         <GrpHdr>
;             <MsgId>1234567890</MsgId>
;             <CreDtTm>2024-10-02T12:00:00</CreDtTm>
;             <NbOfTxs>1</NbOfTxs>
;             <CtrlSum>1000.00</CtrlSum>
;             <InitgPty>
;                 <Nm>Example Company</Nm>
;             </InitgPty>
;         </GrpHdr>
;         <PmtInf>
;             <!-- Payment information goes here -->
;         </PmtInf>
;     </CstmrCdtTrfInitn>
; </Document>

; What is "pain.001.001.02"?
; 
;     "pain.001": This is an ISO 20022 message type for Customer Credit Transfer
;     Initiation. It is used to instruct a bank or financial institution to transfer
;     funds from a customer's account to a beneficiary's account.
;     "pain.001.001.02": This specifies version "02" of the "pain.001" message.
;     The versioning indicates that there might be other versions like
;     "pain.001.001.01", and this version "02" includes revisions or updates compared
;     to version "01".
; 
; Usage:
; 
;     This namespace is typically seen in XML files that follow the ISO 20022
;     payment initiation standards. Financial institutions, payment service providers,
;     and other entities use it to exchange structured payment data in a standardized
;     XML format.
;     A typical use case for "pain.001.001.02" is to send payment instructions for
;     credit transfers, such as payments from businesses to suppliers or salary
;     payments from employers to employees.

; We can sign any type of file, creating a .p7m as output.
; The .p7m contains the signature and also embeds the data of the file that is signed.
Local $sInFile = "qa_data/xml/cust_credit_transfer.xml"
Local $sP7mFile = "c:/temp/qa_output/cust_credit_transfer.p7m"

; -----------------------------------------------------------------------------------------
; Also see Chilkat's online tool to examine a .p7m and generate code to duplicate the .p7m
; -----------------------------------------------------------------------------------------

; Create the CAdES-BES attached signature, which contains the original data.
$bSuccess = $oCrypt.CreateP7M($sInFile,$sP7mFile)
If ($bSuccess = False) Then
    ConsoleWrite($oCrypt.LastErrorText & @CRLF)
    Exit
EndIf

ConsoleWrite("Created the .p7m" & @CRLF)

; --------------------------------------
; Now do the reverse and validate/extract
; --------------------------------------

Local $sOutFile = "c:/temp/qa_output/out.xml"
$sInFile = "qa_data/p7m/cust_credit_transfer.p7m"

; Verify and extract the encapsulated file:
$bSuccess = $oCrypt.VerifyP7M($sInFile,$sOutFile)
If ($bSuccess = False) Then
    ConsoleWrite($oCrypt.LastErrorText & @CRLF)
    Exit
EndIf

ConsoleWrite("Success!" & @CRLF)

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.