NAME
Win32::GenRandom - XS wrappers of CryptGenRandom and RtlGenRandom.
FUNCTIONS
@c = cgr($how_many, $size);
Returns an array of $how_many strings - each string consisting of
$size random bytes.
This function uses CryptGenRandom to generate the random strings.
@c = rgr($how_many, $size);
Returns an array of $how_many strings - each string consisting of
$size random bytes.
This function uses RtlGenRandom to generate the random strings.
(Not available on Windows 2000 and earlier - croaks if used on
such a system.)
@c = cgr_uv($how_many);
Returns an array of $how_many Perl internal unsigned integer
values (UV).
This function uses CryptGenRandom to generate the random UVs.
@c = rgr_uv($how_many);
Returns an array of $how_many Perl internal unsigned integer
values (UV).
This function uses RtlGenRandom to generate the random UVs.
(Not available on Windows 2000 and earlier - croaks if used on
such a system.)
COPYRIGHT
Copyright Sisyphus 2014.