PHP code example of stymiee / php-simple-encryption
1. Go to this page and download the library: Download stymiee/php-simple-encryption 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/ */
stymiee / php-simple-encryption example snippets
use Encryption\Encryption;
use Encryption\Exception\EncryptionException;
$text = 'The quick brown fox jumps over the lazy dog';
$key = 'secretkey';
try {
$encryption = Encryption::getEncryptionObject();
$iv = $encryption->generateIv();
$encryptedText = $encryption->encrypt($text, $key, $iv);
$decryptedText = $encryption->decrypt($encryptedText, $key, $iv);
printf('Cipher : %s%s', $encryption->getName(), PHP_EOL);
printf('Encrypted: %s%s', $encryptedText, PHP_EOL);
printf('Decrypted: %s%s', $decryptedText, PHP_EOL);
printf('Version : %s%s', Encryption::VERSION, PHP_EOL);
}
catch (EncryptionException $e) {
echo $e;
}