PHP code example of nguyenanhung / phpaes
1. Go to this page and download the library: Download nguyenanhung/phpaes 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/ */
nguyenanhung / phpaes example snippets
use nguyenanhung\PhpAes\Aes;
$aes = new Aes('abcdefgh01234567', 'CBC', '1234567890abcdef');
$y = $aes->encrypt('hello world!');
$x = $aes->decrypt($y);
echo base64_encode($y);
echo $x;