PHP code example of magroski / wt
1. Go to this page and download the library: Download magroski/wt 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/ */
magroski / wt example snippets
# Passing the key on the constructor
$wt = new WT('AES-256-CBC', 'abcdefgh', 'potato');
$object = new \stdClass();
$token = $wt->encode($object);
$decoded = $wt->decode($token);
# Passing the key during encode/decode
$wt = new WT('AES-256-CBC', 'xkfo39sp');
$object = new \stdClass();
$token = $wt->encode($object, 'potato');
$decoded = $wt->decode($token, 'potato');