Sample code for 30+ languages & platforms
AutoIt

PKCS7 Decrypt MIME

See more MIME Examples

Loads a PKCS7 encrypted MIME file and decrypts. The cert and private key used for decryption is loaded from a PFX file.

Chilkat AutoIt Downloads

AutoIt
Local $bSuccess = False

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

$oMime = ObjCreate("Chilkat.Mime")

; Load the MIME
$bSuccess = $oMime.LoadMimeFile("encryptedMime.txt")
If ($bSuccess = False) Then
    ConsoleWrite($oMime.LastErrorText & @CRLF)
    Exit
EndIf

; The AddPfxSourceFile and/or AddPfxSourceData
; methods may be called one or more times (one per PFX)
; to add sources from which the MIME component will
; search for certificates and private keys when decrypting.
Local $sPfxPassword = "myPassword"
$bSuccess = $oMime.AddPfxSourceFile("myCertAndPrivateKey.pfx",$sPfxPassword)
If ($bSuccess = False) Then
    ConsoleWrite($oMime.LastErrorText & @CRLF)
    Exit
EndIf

; Decrypt...
$bSuccess = $oMime.Decrypt()
If ($bSuccess = False) Then
    ConsoleWrite($oMime.LastErrorText & @CRLF)
    Exit
EndIf

; Display the decrypted MIME:
ConsoleWrite($oMime.GetMime() & @CRLF)