Génération de chaîne aléatoire en php à l'aide de la fonction random_bytes (). (Cryptographiquement sécurisé)

<?php 
$n = 20;
$result = bin2hex(random_bytes($n));
echo "Hello from Softhunt.net";

echo $result;
?>
Outrageous Ostrich