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,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(VB.NET UWP/WinRT) Duplicate OpensSSL to Encrypt a Signed FileThis example duplicates the following: openssl smime -encrypt –in SIGNED.P7M –outform der –binary –des3 -out ENCRYPTED.ENC OTHERPARTYCERTIFICATE.PEM Note: Although "smime" is the OpenSSL command, it's not actually producing S/MIME. The arguments "-outform der -binary" indicates that the output is binary DER (i.e. the PKCS7 binary signature). The input file (in this case) is a .p7m opaque signature, but it can be any type of file. There is nothing special about the fact that the input is .p7m. It is treated exactly the same as any other type of file. From the standpoint of encryption, the input file is just a bunch of bytes that needs to be encrypted and emitted to a PKCS7 binary DER output.
' This example requires the Chilkat API to have been previously unlocked. ' See Global Unlock Sample for sample code. Dim crypt As New Chilkat.Crypt2 ' PKCS7 encryption only requires the certificate (which contains the public key). ' Load the certificate.. ' The cert.LoadFromFile method detects the file format. You may load any type of file ' containing a certificate.. Dim cert As New Chilkat.Cert Dim success As Boolean = cert.LoadFromFile("qa_data/certs/otherPartyCert.pem") If (success <> True) Then Debug.WriteLine(cert.LastErrorText) Exit Sub End If ' Indicate that we want Public Key Infrastructure (PKI) encryption. crypt.CryptAlgorithm = "pki" ' The desired encryption is "-des3", so choose "3des" for the underlying PKCS7 symmetric encryption: crypt.Pkcs7CryptAlg = "3des" ' Indicate the cert/public key to use for encryption: success = crypt.SetEncryptCert(cert) If (success <> True) Then Debug.WriteLine(crypt.LastErrorText) Exit Sub End If ' Call a crypt.Encrypt* methods to encrypt to/from memory sources (i.e. strings or bytes) ' or.. call CkEncryptFile to do file-to-file encryption. ' In this case the file to be encrypted is "signed.p7m", but it could be any type of file.. success = Await crypt.CkEncryptFileAsync("somedir/signed.p7m","qa_output/encrypted.enc") If (success <> True) Then Debug.WriteLine(crypt.LastErrorText) Exit Sub End If Debug.WriteLine("Success.") |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.