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
(Classic ASP) openssl smime -encrypt -des3 -in
See more OpenSSL ExamplesOpenSSL SMIME encrypt file using PEM containing a certificate.
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <% ' This example requires the Chilkat API to have been previously unlocked. ' See Global Unlock Sample for sample code. ' Load the cert from a PEM file. ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.Pem") set pem = Server.CreateObject("Chilkat.Pem") ' Our particular PEM was not encrypted, so we pass an empty password. ' Also, a private key is not needed for encryption. The PEM used to test this example ' happens to have a private key, but it's not actually used. success = pem.LoadPemFile("qa_data/openssl/rsaCertAndKey.pem","") If (success = 0) Then Response.Write "<pre>" & Server.HTMLEncode( pem.LastErrorText) & "</pre>" Response.End End If If (pem.NumCerts = 0) Then Response.Write "<pre>" & Server.HTMLEncode( "PEM does not contain any certificates.") & "</pre>" Response.End End If ' cert is a Chilkat.Cert Set cert = pem.GetCert(0) If (pem.LastMethodSuccess = 0) Then Response.Write "<pre>" & Server.HTMLEncode( pem.LastErrorText) & "</pre>" Response.End End If ' ------------------------------------------------------------------------------------- ' Duplicate this OpenSSL command: openssl smime -encrypt -des3 -in <file> <pem file> ' ------------------------------------------------------------------------------------- ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.Crypt2") set crypt = Server.CreateObject("Chilkat.Crypt2") success = crypt.SetEncryptCert(cert) If (success = 0) Then Response.Write "<pre>" & Server.HTMLEncode( crypt.LastErrorText) & "</pre>" Response.End End If crypt.CryptAlgorithm = "PKI" crypt.Pkcs7CryptAlg = "3des" crypt.KeyLength = 168 ' Load the file to be encrypted. ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.BinData") set bd = Server.CreateObject("Chilkat.BinData") success = bd.LoadFile("qa_data/openssl/hello.txt") If (success = 0) Then Response.Write "<pre>" & Server.HTMLEncode( "Failed to load the input file.") & "</pre>" Response.End End If ' Encrypt. success = crypt.EncryptBd(bd) If (success = 0) Then Response.Write "<pre>" & Server.HTMLEncode( crypt.LastErrorText) & "</pre>" Response.End End If ' The openssl smime -encrypt command produces encrypte MIME such as this: ' MIME-Version: 1.0 ' Content-Disposition: attachment; filename="smime.p7m" ' Content-Type: application/x-pkcs7-mime; smime-type=enveloped-data; name="smime.p7m" ' Content-Transfer-Encoding: base64 ' ' MIICzwYJKoZIhvcNAQcDoIICwDCCArwCAQAxggF8MIIBeAIBADBgMEoxCzAJBgNVBAYTAlVTMRYw ' FAYDVQQKEw1MZXQncyBFbmNyeXB0MSMwIQYDVQQDExpMZXQncyBFbmNyeXB0IEF1dGhvcml0eSBY ' MwISA9Nqgb1dH/XTDNeKzN1nR85iMA0GCSqGSIb3DQEBAQUABIIBAIQqPexjxWovgxwKV/r3HL/U ' EP9Yozvz5hBeX5VvRZjKSi4FRw5wapElPK+4FB82hiAR9Mi3c16PvPSVkJv3l78Mv5uaaOs/OmUz ' mIHFB6Z+l2E52BDmUVWJZTQ09vdWy6+NIRlg2R9Z1NkmZ4BZCJk6mHB/Yx03IaOxK8LnwieDMthM ' SvxbhJnIOISN7k7ofs+/0vTXUpdQ+tlmwyVySMGQ6VMk+z4sqZJ2stacqCPtt/aiSwJ9p0OKmihf ' 3KDJceXJtavIQeA97yz1LqPvle35mmd5sBhV9qQYdTV/KJ+YM5uEZ9BHYbvMJbADFHwKzhcEY3qA ' 7T9acmEsb7NycOIwggE1BgkqhkiG9w0BBwEwFAYIKoZIhvcNAwcECERX/ZoHweSkgIIBEMmCMx49 ' zjVAnGqRaBbvzQT1hg0uQSxIJjxMxC+HSuM+eY9oSOsbrw4uIijHKH9NdOpeDsdRzg2z5EBM7AlP ' Ht9DyPW5C2deV6RPX4F8gyExz+JUXrd+3Yb3AKTdpDkTWDmNCeO0r/YSqp518+mfU5hG8e336u51 ' HAM44FeknA8oThWsD/wUB1e8vzsatK4UXW/KSu/166V7z+VT86kd+IHa7t60U9Yp0ZXgcM5Pb5Ni ' 69Qc5MKPzom2801H5UR/WjCgsxOIjOj49sKisjRy79skrJzxY5ZG05T0dKn6KC3TjRpIEEeOyhCd ' Nm2Y7dcW8GLMepdhWay5vePmQxmvmhbAtBprIem14NcrYeG6D5wP ' We have the body in bd ' Construct the header and base64 body... ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.StringBuilder") set sbEncryptedMime = Server.CreateObject("Chilkat.StringBuilder") success = sbEncryptedMime.AppendLine("MIME-Version: 1.0",1) success = sbEncryptedMime.AppendLine("Content-Disposition: attachment; filename=""smime.p7m""",1) success = sbEncryptedMime.AppendLine("Content-Type: application/x-pkcs7-mime; smime-type=enveloped-data; name=""smime.p7m""",1) success = sbEncryptedMime.AppendLine("Content-Transfer-Encoding: base64",1) success = sbEncryptedMime.AppendLine("",1) success = sbEncryptedMime.AppendLine(bd.GetEncoded("base64_mime"),1) ' Show the result. Response.Write "<pre>" & Server.HTMLEncode( sbEncryptedMime.GetAsString()) & "</pre>" ' or save to a file.. success = sbEncryptedMime.WriteFile("qa_output/encryptedMime.txt","utf-8",0) %> </body> </html> |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.