这个PRNG功能安全吗?

时间:2014-08-05 10:15:45

标签: php prng

我必须有一个加密安全功能,它给我一个随机字符串,用于加密。以下功能是否足够好呢?

'PHP'

function GenerateRandomString($Length) {
 $Length /= 2;
 $cstrong = false;
 while ($cstrong != TRUE){
    $bytes = openssl_random_pseudo_bytes($Length, $cstrong);
 }
 $hex = bin2hex($bytes);
 return $hex;
}

0 个答案:

没有答案