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) Encrypt using Cert to produce -----BEGIN PKCS7----- ... -----END PKCS7-----Demonstrates how to encrypt using a certificate to produce output such as: -----BEGIN PKCS7----- MIIHPwYJKoZIhvcNAQcEoIIHMDCCBywC ... ... ... -----END PKCS7-----The certificate to be used is not your own, but the certificate of the intended recipient of the message.
integer li_rc oleobject loo_Crypt oleobject loo_Cert integer li_Success string ls_ToBeEncrypted string ls_EncryptedStr oleobject loo_Sb string ls_OutStr // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Crypt = create oleobject // Use "Chilkat_9_5_0.Crypt2" for versions of Chilkat < 10.0.0 li_rc = loo_Crypt.ConnectToNewObject("Chilkat.Crypt2") if li_rc < 0 then destroy loo_Crypt MessageBox("Error","Connecting to COM object failed") return end if // Specify the encryption to be used. // "pki" indicates "Public Key Infrastructure" and will create a PKCS7 encrypted (enveloped) message. loo_Crypt.CryptAlgorithm = "pki" loo_Crypt.Pkcs7CryptAlg = "aes" loo_Crypt.KeyLength = 128 loo_Crypt.OaepHash = "sha256" loo_Crypt.OaepPadding = 1 // A certificate is needed as the encryption key.. loo_Cert = create oleobject // Use "Chilkat_9_5_0.Cert" for versions of Chilkat < 10.0.0 li_rc = loo_Cert.ConnectToNewObject("Chilkat.Cert") li_Success = loo_Cert.LoadFromFile("qa_data/certs/testCert.pem") if li_Success <> 1 then Write-Debug loo_Cert.LastErrorText destroy loo_Crypt destroy loo_Cert return end if // Tell the crypt object to use the certificate. loo_Crypt.SetEncryptCert(loo_Cert) ls_ToBeEncrypted = "This string is to be encrypted." // Get the result in multi-line BASE64 MIME format. loo_Crypt.EncodingMode = "base64_mime" ls_EncryptedStr = loo_Crypt.EncryptStringENC(ls_ToBeEncrypted) if li_Success <> 1 then Write-Debug loo_Crypt.LastErrorText destroy loo_Crypt destroy loo_Cert return end if // Make a "-----BEGIN PKCS7-----" ... "-----END PKCS7-----" sandwich... loo_Sb = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_Sb.ConnectToNewObject("Chilkat.StringBuilder") loo_Sb.AppendLine("-----BEGIN PKCS7-----",1) loo_Sb.Append(ls_EncryptedStr) loo_Sb.AppendLine("-----END PKCS7-----",1) ls_OutStr = loo_Sb.GetAsString() Write-Debug ls_OutStr // Sample output: // -----BEGIN PKCS7----- // MIICYQYJKoZIhvcNAQcDoIICUjCCAk4CAQAxggH5MIIB9QIBADCBsTCBmzELMAkGA1UEBhMCR0Ix // GzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR // Q09NT0RPIENBIExpbWl0ZWQxQTA/BgNVBAMTOENPTU9ETyBTSEEtMjU2IENsaWVudCBBdXRoZW50 // aWNhdGlvbiBhbmQgU2VjdXJlIEVtYWlsIENBAhEAuBl4qE2MODB05C5h53M5UDA4BgkqhkiG9w0B // AQcwK6APMA0GCWCGSAFlAwQCAQUAoRgwFgYJKoZIhvcNAQEIMAkGBSsOAwIaBQAEggEAyZejlE37 // awl0bCWVbOCqf9yLSN17mZRamG8FHDh3nNu11G0+oyJtsPDEnSKsQig0V67MZ+hcWV+uf4ytcjyx // H0gs5uex+LwkB+c3ZTOt18IYWFtRilg1HFy1ZN3t0D2QbxYy+i1TXOOwp3gAHL45vRCJ0FbKyQ36 // pKl0XLe+lRvp2EiJCKVjxtX8VcZOKT4xkG7yOARaCQceth6pA58Dg0yzAz7w4nD2UgAlNzrXG69X // e+7e7yfBv47RRqFiQqDpCn+fM/PmFbUyqBppMwc64yP+fJek8VyJw2/UaXWWM4iSKSflk90tiHwf // loEU3It4arnSv94fZQo0v129aBqpWzBMBgkqhkiG9w0BBwEwHQYJYIZIAWUDBAECBBCohUgm5qX+ // TE6PxtPCmWi8gCBgbNg39emAB+AqLozm+vSLjZOGfg3M52gccKUJ8tg8XQ== // -----END PKCS7----- destroy loo_Crypt destroy loo_Cert destroy loo_Sb |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.