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 Extension) 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 // The version number (9_5_0) should match version of the Chilkat extension used, omitting the micro-version number. // For example, if using Chilkat v9.5.0.48, then include as shown here: include("chilkat_9_5_0.php"); // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. $crypt = new CkCrypt2(); // 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.. $cert = new CkCert(); $success = $cert->LoadFromFile('qa_data/certs/otherPartyCert.pem'); if ($success != true) { print $cert->lastErrorText() . "\n"; exit; } // Indicate that we want Public Key Infrastructure (PKI) encryption. $crypt->put_CryptAlgorithm('pki'); // The desired encryption is "-des3", so choose "3des" for the underlying PKCS7 symmetric encryption: $crypt->put_Pkcs7CryptAlg('3des'); // Indicate the cert/public key to use for encryption: $success = $crypt->SetEncryptCert($cert); if ($success != true) { 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 != true) { print $crypt->lastErrorText() . "\n"; exit; } print 'Success.' . "\n"; ?> |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.