?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/schtroumpf.fr/vendor/defuse/php-encryption/bin/



?? Go up: /home/webdevt/www/schtroumpf.fr/vendor/defuse/php-encryption

?? Viewing: generate-defuse-key

#!/usr/bin/env php
<?php

use Defuse\Crypto\Key;

foreach ([__DIR__ . '/../../../autoload.php', __DIR__ . '/../vendor/autoload.php'] as $file) {
    if (file_exists($file)) {
        require $file;
        break;
    }
}

$key = Key::createNewRandomKey();
echo $key->saveToAsciiSafeString(), "\n";


??

??