$key = "aa2vNqhhBcXtJoBB";
$key = \Illuminate\Support\Str::random(16);
print_r($key."\n");
$e = new \Illuminate\Encryption\Encrypter($key);
$encrypted = $e->encryptString('Hello world.');
print_r($encrypted."\n");
$decrypted = $e->decryptString($encrypted);
print_r($decrypted."\n");