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);
?>