PHP code example of g4 / crypto
1. Go to this page and download the library: Download g4/crypto library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
g4 / crypto example snippets
php
use G4\Crypto\Crypt;
use G4\Crypto\Adapter\OpenSSL;
$crypto = new Crypt(new OpenSSL());
$crypto->setEncryptionKey('tHi5Is');
$encryptedMessage = $crypto->encode('new message');
$message = $crypto->decode($encryptedMessage);
php
use G4\Crypto\Crypt;
use G4\Crypto\Adapter\Mcrypt;
$crypto = new Crypt(new Mcrypt());
$crypto->setEncryptionKey('tHi5Is');
$encryptedMessage = $crypto->encode('new message');
$message = $crypto->decode($encryptedMessage);