我必须有一个加密安全功能,它给我一个随机字符串,用于加密。以下功能是否足够好呢?
'PHP'
function GenerateRandomString($Length) {
$Length /= 2;
$cstrong = false;
while ($cstrong != TRUE){
$bytes = openssl_random_pseudo_bytes($Length, $cstrong);
}
$hex = bin2hex($bytes);
return $hex;
}