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
(PHP ActiveX) 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.
<?php // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.Crypt2') $crypt = new COM("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.. // For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.Cert') $cert = new COM("Chilkat.Cert"); $success = $cert->LoadFromFile('qa_data/certs/otherPartyCert.pem'); if ($success != 1) { print $cert->LastErrorText . "\n"; exit; } // 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 != 1) { print $crypt->LastErrorText . "\n"; exit; } // 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 = $crypt->CkEncryptFile('somedir/signed.p7m','qa_output/encrypted.enc'); if ($success != 1) { print $crypt->LastErrorText . "\n"; exit; } print 'Success.' . "\n"; ?> |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.