GENDSA(1) OpenSSL GENDSA(1)NAME
gendsa - generate a DSA private key from a set of parameters
SYNOPSIS
openssl gendsa [-out filename] [-des] [-des3] [-idea] [-rand file(s)] [-engine id] [paramfile]
DESCRIPTION
The gendsa command generates a DSA private key from a DSA parameter file (which will be typically generated by the openssl dsaparam
command).
OPTIONS
-des|-des3|-idea
These options encrypt the private key with the DES, triple DES, or the IDEA ciphers respectively before outputting it. A pass phrase is
prompted for. If none of these options is specified no encryption is used.
-rand file(s)
a file or files containing random data used to seed the random number generator, or an EGD 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.
-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.
paramfile
This option specifies the DSA parameter file to use. The parameters in this file determine the size of the private key. DSA parameters
can be generated and examined using the openssl dsaparam command.
NOTES
DSA key generation is little more than random number generation so it is much quicker that RSA key generation for example.
SEE ALSO dsaparam(1), dsa(1), genrsa(1), rsa(1)50 2013-03-05 GENDSA(1)
Check Out this Related Man Page
GENDSA(1) OpenSSL GENDSA(1)NAME
gendsa - generate a DSA private key from a set of parameters
SYNOPSIS
openssl gendsa [-out filename] [-des] [-des3] [-idea] [-rand file(s)] [-engine id] [paramfile]
DESCRIPTION
The gendsa command generates a DSA private key from a DSA parameter file (which will be typically generated by the openssl dsaparam com-
mand).
OPTIONS
-des|-des3|-idea
These options encrypt the private key with the DES, triple DES, or the IDEA ciphers respectively before outputting it. A pass phrase is
prompted for. If none of these options is specified no encryption is used.
-rand file(s)
a file or files containing random data used to seed the random number generator, or an EGD 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.
-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.
paramfile
This option specifies the DSA parameter file to use. The parameters in this file determine the size of the private key. DSA parameters
can be generated and examined using the openssl dsaparam command.
NOTES
DSA key generation is little more than random number generation so it is much quicker that RSA key generation for example.
SEE ALSO dsaparam(1), dsa(1), genrsa(1), rsa(1)0.9.7a 2003-01-30 GENDSA(1)
I am writing a C program that part of the idea is to using a command line parameter to control not to run certain part of the sub program.
I am totally new to C, I do not have any idea how to pass a command line arguments from a C program.
Can anyone help ?!
Thanks (3 Replies)
Hi Folks,
Can you help me with this issue:
I have to generate the numbers say from 1001 for each record in a file based on a key field,
the catch is the generated number should be unique based on key column.
(EMP_NUMBER)
Example:
Input File:
EMP_NUMBER EMP_NAME
8908 ... (6 Replies)
Hello Experts,
I have a project that contain two main layer. one of them is engine and other is web interface (My language is perl). I want to know what is your idea and or library or any stanza for making communicate layer between these two layer with high flexibility.
For example engine can... (1 Reply)
Hi,
I want to encrypt a unix file using the des3 algorithm. Seems that there are no standard unix utilities readily available. Can you please suggest how I can encrypt a unix file using des3 ? (2 Replies)
Hey all, i have an application i am developing and i would like to use the
OpenSSL des3 encryption, the only problem i am having is when i need to input the second key verification. Heres what i have so far
openssl des3 -salt -in /tmp -out pwenc.z | echo 1111
usually for password verification... (0 Replies)