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
(PowerBuilder) PKCS7 Decrypt Using .pfx or .p12 DataSee more MIME ExamplesDemonstrates how to decrypt MIME using a specifc PFX file (.pfx or .p12) for the source of certificate(s) and private key(s).
integer li_rc oleobject loo_Mime integer li_Success oleobject loo_Fac string ls_PfxPassword // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Mime = create oleobject // Use "Chilkat_9_5_0.Mime" for versions of Chilkat < 10.0.0 li_rc = loo_Mime.ConnectToNewObject("Chilkat.Mime") if li_rc < 0 then destroy loo_Mime MessageBox("Error","Connecting to COM object failed") return end if // Load the MIME li_Success = loo_Mime.LoadMimeFile("encrypted.mim") if li_Success = 0 then Write-Debug loo_Mime.LastErrorText destroy loo_Mime return end if loo_Fac = create oleobject // Use "Chilkat_9_5_0.FileAccess" for versions of Chilkat < 10.0.0 li_rc = loo_Fac.ConnectToNewObject("Chilkat.FileAccess") loo_PfxData = loo_Fac.ReadEntireFile("pfxStore/myPkcs12.p12") if loo_Fac.LastMethodSuccess <> 1 then Write-Debug loo_Fac.LastErrorText destroy loo_Mime destroy loo_Fac return end if ls_PfxPassword = "myPassword" li_Success = loo_Mime.DecryptUsingPfxData(loo_PfxData,ls_PfxPassword) if li_Success = 0 then Write-Debug loo_Mime.LastErrorText destroy loo_Mime destroy loo_Fac return end if // Display the decrypted MIME: Write-Debug loo_Mime.GetMime() // Note: The MIME to be decrypted should look something like this // when viewed in a text editor: // (Note that the Content-Type is application/x-pkcs7-mime) // Content-Disposition: attachment; filename="smime.p7m" // Content-Transfer-Encoding: base64 // Content-Type: application/x-pkcs7-mime; // name="smime.p7m" // // MIICRAYJKoZIhvcNAQcDoIICNTCCAjECAQAxggHIMIIBxAIBADCBqzCBlTELMAkGA1UEBhMCVVMx // CzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0eTEeMBwGA1UEChMVVGhlIFVTRVJU // UlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xHTAbBgNVBAMT // FFVUTi1VU0VSRmlyc3QtT2JqZWN0AhEA5vxolKNrYgp1Z7ABICdK+zANBgkqhkiG9w0BAQEFAASC // AQAJ68jTh3u3ovsOuz1aHXTV90GBB6DMfCdx0bZ85trSvDXBevMOtQdctz653de8EB2xU4RlaPQa // oBpF8G01PMaKezd+FGLbhm7gmKl7boej3BboUzM4wrwjc8qHTGc/haT1ZA3jUU3DR4emVXNmRgWc // FDU5Dnkf+Z2YXQop9wPCf1Ng+8LLjBX9yxgXP1ZyFDe9vUnSkk2fmZatEY2Y6eWHNbrj6q4F40qN // PAyZW1rJSFmKTSPSzv7S0VWBMh+FgUKtqk4I6/+zhneLYeJBZFskmMIGFpgKdgrN7vbbr1a2gv/M // PbHUxwKMD4KZ2auyuGKMVLBOm+n8v5f8EegloL/UMGAGCSqGSIb3DQEHATAZBggqhkiG9w0DAjAN // AgE6BAgcohHNLdl9FoA4q22x8vXs05wuScRgLhwMOzvdGQkBJx+6iQDBuoCVxF8sQ35g+0PPxN3M // 6Zw6nI1gSIIKBS3ZjtI= destroy loo_Mime destroy loo_Fac |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.