This repository has been archived on 2024-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
2021-02-27 13:52:14 +02:00
|
|
|
<?php
|
|
|
|
require_once("./lib.php");
|
|
|
|
@require_once("./config.inc.php");
|
|
|
|
|
|
|
|
// Check if the config succesfully loaded, or if the mandatory config fields are missing.
|
|
|
|
if ( empty($config) || empty($config['key']) || empty($config['input']) ) {
|
|
|
|
echo "Please copy the config.sample.inc.php to config.inc.php and change the configuration to match your needs.";
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Echo out the results
|
|
|
|
echo $encryptedData = encryptData($config['input'], $config['key'], 'AES-256-CBC', TRUE);
|