| OLD | NEW |
| 1 =pod | 1 =pod |
| 2 | 2 |
| 3 =head1 NAME | 3 =head1 NAME |
| 4 | 4 |
| 5 dsa - DSA key processing | 5 dsa - DSA key processing |
| 6 | 6 |
| 7 =head1 SYNOPSIS | 7 =head1 SYNOPSIS |
| 8 | 8 |
| 9 B<openssl> B<dsa> | 9 B<openssl> B<dsa> |
| 10 [B<-inform PEM|DER>] | 10 [B<-inform PEM|DER>] |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 public key is read instead. | 102 public key is read instead. |
| 103 | 103 |
| 104 =item B<-pubout> | 104 =item B<-pubout> |
| 105 | 105 |
| 106 by default a private key is output. With this option a public | 106 by default a private key is output. With this option a public |
| 107 key will be output instead. This option is automatically set if the input is | 107 key will be output instead. This option is automatically set if the input is |
| 108 a public key. | 108 a public key. |
| 109 | 109 |
| 110 =item B<-engine id> | 110 =item B<-engine id> |
| 111 | 111 |
| 112 specifying an engine (by it's unique B<id> string) will cause B<req> | 112 specifying an engine (by its unique B<id> string) will cause B<dsa> |
| 113 to attempt to obtain a functional reference to the specified engine, | 113 to attempt to obtain a functional reference to the specified engine, |
| 114 thus initialising it if needed. The engine will then be set as the default | 114 thus initialising it if needed. The engine will then be set as the default |
| 115 for all available algorithms. | 115 for all available algorithms. |
| 116 | 116 |
| 117 =back | 117 =back |
| 118 | 118 |
| 119 =head1 NOTES | 119 =head1 NOTES |
| 120 | 120 |
| 121 The PEM private key format uses the header and footer lines: | 121 The PEM private key format uses the header and footer lines: |
| 122 | 122 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 149 To just output the public part of a private key: | 149 To just output the public part of a private key: |
| 150 | 150 |
| 151 openssl dsa -in key.pem -pubout -out pubkey.pem | 151 openssl dsa -in key.pem -pubout -out pubkey.pem |
| 152 | 152 |
| 153 =head1 SEE ALSO | 153 =head1 SEE ALSO |
| 154 | 154 |
| 155 L<dsaparam(1)|dsaparam(1)>, L<gendsa(1)|gendsa(1)>, L<rsa(1)|rsa(1)>, | 155 L<dsaparam(1)|dsaparam(1)>, L<gendsa(1)|gendsa(1)>, L<rsa(1)|rsa(1)>, |
| 156 L<genrsa(1)|genrsa(1)> | 156 L<genrsa(1)|genrsa(1)> |
| 157 | 157 |
| 158 =cut | 158 =cut |
| OLD | NEW |