dsaparam.1 revision 296465
Automatically generated by Pod::Man 2.28 (Pod::Simple 3.28)

Standard preamble:
========================================================================
..
..
.. Set up some character translations and predefined strings. \*(-- will
give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
double quote, and \*(R" will give a right double quote. \*(C+ will
give a nicer C++. Capital omega is used to do unbreakable dashes and
therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
nothing in troff, for use with C<>.
.tr \(*W- . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\}
Escape single quotes in literal strings from groff's Unicode transform.

If the F register is turned on, we'll generate index entries on stderr for
titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
entries marked with X<> in POD. Of course, you'll have to process the
output yourself in some meaningful fashion.

Avoid warning from groff about undefined register 'F'.
.. .nr rF 0 . if \nF \{ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{ . nr % 0 . nr F 2 . \} . \} .\} .rr rF
Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
Fear. Run. Save yourself. No user-serviceable parts.
. \" fudge factors for nroff and troff . ds #H 0 . ds #V .8m . ds #F .3m . ds #[ \f1 . ds #] .\} . ds #H ((1u-(\\\\n(.fu%2u))*.13m) . ds #V .6m . ds #F 0 . ds #[ \& . ds #] \& .\} . \" simple accents for nroff and troff . ds ' \& . ds ` \& . ds ^ \& . ds , \& . ds ~ ~ . ds / .\} . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' .\} . \" troff and (daisy-wheel) nroff accents . \" corrections for vroff . \" for low resolution devices (crt and lpr) \{\ . ds : e . ds 8 ss . ds o a . ds d- d\h'-1'\(ga . ds D- D\h'-1'\(hy . ds th \o'bp' . ds Th \o'LP' . ds ae ae . ds Ae AE .\} ========================================================================

Title "DSAPARAM 1"
DSAPARAM 1 "2015-12-03" "0.9.8zh" "OpenSSL"
For nroff, turn off justification. Always turn off hyphenation; it makes
way too many mistakes in technical documents.
"NAME"
dsaparam - DSA parameter manipulation and generation
"SYNOPSIS"
Header "SYNOPSIS" \fBopenssl dsaparam [-inform DER|PEM] [-outform DER|PEM] [-in filename] [-out filename] [-noout] [-text] [-C] [-rand file(s)] [-genkey] [-engine id] [numbits]
"DESCRIPTION"
Header "DESCRIPTION" This command is used to manipulate or generate \s-1DSA\s0 parameter files.
"OPTIONS"
Header "OPTIONS"
"-inform DER|PEM" 4
Item "-inform DER|PEM" This specifies the input format. The \s-1DER\s0 option uses an \s-1ASN1 DER\s0 encoded form compatible with \s-1RFC2459 \s0(\s-1PKIX\s0) DSS-Parms that is a \s-1SEQUENCE\s0 consisting of p, q and g respectively. The \s-1PEM\s0 form is the default format: it consists of the \s-1DER\s0 format base64 encoded with additional header and footer lines.
"-outform DER|PEM" 4
Item "-outform DER|PEM" This specifies the output format, the options have the same meaning as the \fB-inform option.
"-in filename" 4
Item "-in filename" This specifies the input filename to read parameters from or standard input if this option is not specified. If the numbits parameter is included then this option will be ignored.
"-out filename" 4
Item "-out filename" This specifies the output filename parameters to. Standard output is used if this option is not present. The output filename should not be the same as the input filename.
"-noout" 4
Item "-noout" this option inhibits the output of the encoded version of the parameters.
"-text" 4
Item "-text" this option prints out the \s-1DSA\s0 parameters in human readable form.
"-C" 4
Item "-C" this option converts the parameters into C code. The parameters can then be loaded by calling the \f(BIget_dsaXXX() function.
"-genkey" 4
Item "-genkey" this option will generate a \s-1DSA\s0 either using the specified or generated parameters.
"-rand file(s)" 4
Item "-rand file(s)" a file or files containing random data used to seed the random number generator, or an \s-1EGD\s0 socket (see RAND_egd\|(3)). Multiple files can be specified separated by a OS-dependent character. The separator is ; for MS-Windows, , for OpenVMS, and : for all others.
"numbits" 4
Item "numbits" this option specifies that a parameter set should be generated of size \fBnumbits. It must be the last option. If this option is included then the input file (if any) is ignored.
"-engine id" 4
Item "-engine id" specifying an engine (by it's unique id string) will cause req to attempt to obtain a functional reference to the specified engine, thus initialising it if needed. The engine will then be set as the default for all available algorithms.
"NOTES"
Header "NOTES" \s-1PEM\s0 format \s-1DSA\s0 parameters use the header and footer lines:

.Vb 2 -----BEGIN DSA PARAMETERS----- -----END DSA PARAMETERS----- .Ve

\s-1DSA\s0 parameter generation is a slow process and as a result the same set of \s-1DSA\s0 parameters is often used to generate several distinct keys.

"SEE ALSO"
Header "SEE ALSO" \fIgendsa\|(1), dsa\|(1), genrsa\|(1), \fIrsa\|(1)