Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(680)

Side by Side Diff: openssl/doc/apps/genrsa.pod

Issue 9254031: Upgrade chrome's OpenSSL to same version Android ships with. (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/third_party/openssl/
Patch Set: '' Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « openssl/doc/apps/genpkey.pod ('k') | openssl/doc/apps/ocsp.pod » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 =pod 1 =pod
2 2
3 =head1 NAME 3 =head1 NAME
4 4
5 genrsa - generate an RSA private key 5 genrsa - generate an RSA private key
6 6
7 =head1 SYNOPSIS 7 =head1 SYNOPSIS
8 8
9 B<openssl> B<genrsa> 9 B<openssl> B<genrsa>
10 [B<-out filename>] 10 [B<-out filename>]
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 =item B<-rand file(s)> 50 =item B<-rand file(s)>
51 51
52 a file or files containing random data used to seed the random number 52 a file or files containing random data used to seed the random number
53 generator, or an EGD socket (see L<RAND_egd(3)|RAND_egd(3)>). 53 generator, or an EGD socket (see L<RAND_egd(3)|RAND_egd(3)>).
54 Multiple files can be specified separated by a OS-dependent character. 54 Multiple files can be specified separated by a OS-dependent character.
55 The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for 55 The separator is B<;> for MS-Windows, B<,> for OpenVMS, and B<:> for
56 all others. 56 all others.
57 57
58 =item B<-engine id> 58 =item B<-engine id>
59 59
60 specifying an engine (by it's unique B<id> string) will cause B<req> 60 specifying an engine (by its unique B<id> string) will cause B<genrsa>
61 to attempt to obtain a functional reference to the specified engine, 61 to attempt to obtain a functional reference to the specified engine,
62 thus initialising it if needed. The engine will then be set as the default 62 thus initialising it if needed. The engine will then be set as the default
63 for all available algorithms. 63 for all available algorithms.
64 64
65 =item B<numbits> 65 =item B<numbits>
66 66
67 the size of the private key to generate in bits. This must be the last option 67 the size of the private key to generate in bits. This must be the last option
68 specified. The default is 512. 68 specified. The default is 512.
69 69
70 =back 70 =back
(...skipping 16 matching lines...) Expand all
87 primes. Therefore the number of bits should not be less that 64. For typical 87 primes. Therefore the number of bits should not be less that 64. For typical
88 private keys this will not matter because for security reasons they will 88 private keys this will not matter because for security reasons they will
89 be much larger (typically 1024 bits). 89 be much larger (typically 1024 bits).
90 90
91 =head1 SEE ALSO 91 =head1 SEE ALSO
92 92
93 L<gendsa(1)|gendsa(1)> 93 L<gendsa(1)|gendsa(1)>
94 94
95 =cut 95 =cut
96 96
OLDNEW
« no previous file with comments | « openssl/doc/apps/genpkey.pod ('k') | openssl/doc/apps/ocsp.pod » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698