PHP code example of wdalmut / rc4-support
1. Go to this page and download the library: Download wdalmut/rc4-support 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/ */
wdalmut / rc4-support example snippets
$rc4 = new RC4("some-super-secret-key");
// Use __invoke magic function
echo $rc4("something-to-obfuscate") . PHP_EOL;
// Or use a direct method
echo $rc4->rc4("something-to-obfuscate") . PHP_EOL;