PHP code example of jeffreyvanrossum / wp-simple-encryption
1. Go to this page and download the library: Download jeffreyvanrossum/wp-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/ */
jeffreyvanrossum / wp-simple-encryption example snippets
use Jeffreyvr\WPSimpleEncryption\WPSimpleEncryption;
$wp_simple_encryption = new WPSimpleEncryption('YOUR_SECRET_KEY_CONSTANT');
$wp_simple_encryption->encrypt('some unencrypted string');
$wp_simple_encryption->decrypt('some encrypted string');