EstrellaTecpile / app /password.php
Estrella Tecpile
se guardo
9a3bf8d
Raw
History Blame Contribute Delete
118 Bytes
<?php
$n =10;
function getRandomString($n) {
return bin2hex(random_bytes($n / 2));
}
echo getRandomString($n);
?>