Ignore machine-check MSRs
[freebsd-src/fkvm-freebsd.git] / crypto / openssl / doc / apps / rand.pod
blob75745ca0023c1ec3c1fd7559fa5f7a6ec804b03e
1 =pod
3 =head1 NAME
5 rand - generate pseudo-random bytes
7 =head1 SYNOPSIS
9 B<openssl rand>
10 [B<-out> I<file>]
11 [B<-rand> I<file(s)>]
12 [B<-base64>]
13 I<num>
15 =head1 DESCRIPTION
17 The B<rand> command outputs I<num> pseudo-random bytes after seeding
18 the random number generator once.  As in other B<openssl> command
19 line tools, PRNG seeding uses the file I<$HOME/>B<.rnd> or B<.rnd>
20 in addition to the files given in the B<-rand> option.  A new
21 I<$HOME>/B<.rnd> or B<.rnd> file will be written back if enough
22 seeding was obtained from these sources.
24 =head1 OPTIONS
26 =over 4
28 =item B<-out> I<file>
30 Write to I<file> instead of standard output.
32 =item B<-rand> I<file(s)>
34 Use specified file or files or EGD socket (see L<RAND_egd(3)|RAND_egd(3)>)
35 for seeding the random number generator.
36 Multiple files can be specified separated by a OS-dependent character.
37 The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
38 all others.
40 =item B<-base64>
42 Perform base64 encoding on the output.
44 =back
46 =head1 SEE ALSO
48 L<RAND_bytes(3)|RAND_bytes(3)>
50 =cut