PHP code example of mphpmaster / tdes
1. Go to this page and download the library: Download mphpmaster/tdes 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/ */
mphpmaster / tdes example snippets
$cipher = \MPhpMaster\TDES\TDESCipher::make('ABCDEFGHIJKLMNOPQRSTUVWX', '12345678', 'des-ede3-cbc'); // new instance
$cipher->encrypt('Test!'); // encrypt
$cipher->decrypt('RZ4wZaGE7qGNZ1'); // decrypt