Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3/4 Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(VBScript) PKCS7 Encrypt MIMEEncrypt MIME using a digital certificate to create PKCS7 encrypted S/MIME.
Dim fso, outFile Set fso = CreateObject("Scripting.FileSystemObject") Set outFile = fso.CreateTextFile("output.txt", True) set mime = CreateObject("Chilkat_9_5_0.Mime") success = mime.UnlockComponent("Anything for 30-day trial.") If (success = 0) Then outFile.WriteLine(mime.LastErrorText) WScript.Quit End If ' Build a simple MIME message to be encrypted: success = mime.AddHeaderField("Content-Type","text/plain") success = mime.AddHeaderField("abc","123") mime.SetBody "This is a test" ' A digital certificate is required to create PKCS7 encrypted MIME. ' It can come from a variety of sources: .cer file, .pfx file, PEM files, ' an in-memory representation, or directly from a Windows ' registry-based certificate store. ' This example will load a certificate object from a .cer file. ' Note: Only the public-key is required to encrypt. (Decryption ' requires a private key.) set cert = CreateObject("Chilkat_9_5_0.Cert") success = cert.LoadFromFile("myCert.cer") If (success = 0) Then outFile.WriteLine(cert.LastErrorText) WScript.Quit End If ' Encrypt the MIME: success = mime.Encrypt(cert) If (success = 0) Then outFile.WriteLine(mime.LastErrorText) WScript.Quit End If ' Display the MIME: outFile.WriteLine(mime.GetMime()) ' The resulting S/MIME looks something like this: /* abc: 123 Content-Disposition: attachment; filename="smime.p7m"; Content-Transfer-Encoding: base64 Content-Type: application/x-pkcs7-mime; name="smime.p7m"; MIICAQYJKoZIhvcNAQcDoIIB8jCCAe4CAQAxggGFMIIBgQIBADBpMFUxCzAJBgNVBAYTAlpBMSUw IwYDVQQKExxUaGF3dGUgQ29uc3VsdGluZyAoUHR5KSBMdGQuMR8wHQYDVQQDExZUaGF3dGUgQ29k ZSBTaWduaW5nIENBAhB4ouTcAmLszrGi170k1deSMA0GCSqGSIb3DQEBAQUABIIBABz59iwVufLZ QIPs0whUYMtBjIQxg5IOCxpoKJeJmLVzu9Q5Q1poxG9uYOveybS9c4wbl5A0DFfKTW5O4HhHcOHW TgcH4iqdwhiFWm/q9d5rjceJWBFQsGOcgoXSU/U2Xp+N47/+Pqyc5XJbxKnOc4YhPzO320JZsNB6 p1NGk5SNnWqgbUDmEnfH8ZPHSV7dNi2aiFALYTyLjyp0lqJCsdZ524OPTZFfusrl/9ibPAW7jKuI FgDCcBtRJvolVF8iIHxaTw4rhk0qb1KWzxvB5j9HSLdyIKIPhZbxeS10bx18YkSsBlKfdKRalQag 3oWSRdsK9/N75YHG8Pm+x9BOHUAwYAYJKoZIhvcNAQcBMBkGCCqGSIb3DQMCMA0CAToECAb+toBW txZigDhGZKSpUpuTiWvvSMemX/c79sSnMpuefVwGKFTDgXVLE2SoD5a9Yh5vcG7Mhl2IkilVwOMc fi23+g== */ outFile.Close |
© 2000-2016 Chilkat Software, Inc. All Rights Reserved.