PHP code example of jjoek / laravel-hybrid-encryption
1. Go to this page and download the library: Download jjoek/laravel-hybrid-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/ */
jjoek / laravel-hybrid-encryption example snippets
use Jjoek\HybridEncryption\Facades\HybridEncryption;
// Get public key
$publicKey = HybridEncryption::getPublicKey();
// Check if encryption is configured
if (HybridEncryption::isConfigured()) {
// Manually decrypt data
$decrypted = HybridEncryption::decrypt($encryptedPayload);
}