| OLD | NEW |
| 1 =pod | 1 =pod |
| 2 | 2 |
| 3 =head1 NAME | 3 =head1 NAME |
| 4 | 4 |
| 5 dhparam - DH parameter manipulation and generation | 5 dhparam - DH parameter manipulation and generation |
| 6 | 6 |
| 7 =head1 SYNOPSIS | 7 =head1 SYNOPSIS |
| 8 | 8 |
| 9 B<openssl dhparam> | 9 B<openssl dhparam> |
| 10 [B<-inform DER|PEM>] | 10 [B<-inform DER|PEM>] |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 | 92 |
| 93 this option prints out the DH parameters in human readable form. | 93 this option prints out the DH parameters in human readable form. |
| 94 | 94 |
| 95 =item B<-C> | 95 =item B<-C> |
| 96 | 96 |
| 97 this option converts the parameters into C code. The parameters can then | 97 this option converts the parameters into C code. The parameters can then |
| 98 be loaded by calling the B<get_dh>I<numbits>B<()> function. | 98 be loaded by calling the B<get_dh>I<numbits>B<()> function. |
| 99 | 99 |
| 100 =item B<-engine id> | 100 =item B<-engine id> |
| 101 | 101 |
| 102 specifying an engine (by it's unique B<id> string) will cause B<req> | 102 specifying an engine (by its unique B<id> string) will cause B<dhparam> |
| 103 to attempt to obtain a functional reference to the specified engine, | 103 to attempt to obtain a functional reference to the specified engine, |
| 104 thus initialising it if needed. The engine will then be set as the default | 104 thus initialising it if needed. The engine will then be set as the default |
| 105 for all available algorithms. | 105 for all available algorithms. |
| 106 | 106 |
| 107 =back | 107 =back |
| 108 | 108 |
| 109 =head1 WARNINGS | 109 =head1 WARNINGS |
| 110 | 110 |
| 111 The program B<dhparam> combines the functionality of the programs B<dh> and | 111 The program B<dhparam> combines the functionality of the programs B<dh> and |
| 112 B<gendh> in previous versions of OpenSSL and SSLeay. The B<dh> and B<gendh> | 112 B<gendh> in previous versions of OpenSSL and SSLeay. The B<dh> and B<gendh> |
| (...skipping 19 matching lines...) Expand all Loading... |
| 132 =head1 SEE ALSO | 132 =head1 SEE ALSO |
| 133 | 133 |
| 134 L<dsaparam(1)|dsaparam(1)> | 134 L<dsaparam(1)|dsaparam(1)> |
| 135 | 135 |
| 136 =head1 HISTORY | 136 =head1 HISTORY |
| 137 | 137 |
| 138 The B<dhparam> command was added in OpenSSL 0.9.5. | 138 The B<dhparam> command was added in OpenSSL 0.9.5. |
| 139 The B<-dsaparam> option was added in OpenSSL 0.9.6. | 139 The B<-dsaparam> option was added in OpenSSL 0.9.6. |
| 140 | 140 |
| 141 =cut | 141 =cut |
| OLD | NEW |