Added test for encryption

This commit is contained in:
Netkas 2022-06-26 10:03:59 -04:00
parent 4c2bf94417
commit 045abadeb8
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,9 @@
<?php
require(__DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'autoload.php');
print('Generating new random key' . PHP_EOL);
$key = \ncc\Defuse\Crypto\Key::createNewRandomKey();
$ascii_key = $key->saveToAsciiSafeString();
print('Key: ' . $ascii_key . PHP_EOL);