PERT20 / app /password.php
PerlaHM's picture
se agrego password
f0964ea
Raw
History Blame Contribute Delete
118 Bytes
<?php
$n = 10;
function getRandomString($n) {
return bin2hex(random_bytes($n / 2));
}
echo getRandomString($n);
?>