summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-06-22 09:59:21 +0000
committerRichard Levitte <levitte@openssl.org>2000-06-22 09:59:21 +0000
commit2a98f41708973b1ce8b7a2c2a3274a599519beca (patch)
tree66881c74ab5a4457580ed64def028bdeb5f23620 /apps
parentfb0b844a7d7985fe3d8601342449b37c3996dc31 (diff)
Forgot the self-documentation within req.
Diffstat (limited to 'apps')
-rw-r--r--apps/req.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/req.c b/apps/req.c
index 82717b99fa..b9b19b8312 100644
--- a/apps/req.c
+++ b/apps/req.c
@@ -102,6 +102,7 @@
* -config file - Load configuration file.
* -key file - make a request using key in file (or use it for verification).
* -keyform - key file format.
+ * -rand file(s) - load the file(s) into the PRNG.
* -newkey - make a key and a request.
* -modulus - print RSA modulus.
* -x509 - output a self signed X509 structure instead.
@@ -378,6 +379,9 @@ bad:
BIO_printf(bio_err," -key file use the private key contained in file\n");
BIO_printf(bio_err," -keyform arg key file format\n");
BIO_printf(bio_err," -keyout arg file to send the key to\n");
+ BIO_printf(bio_err," -rand file%cfile%c...\n", LIST_SEPARATOR_CHAR, LIST_SEPARATOR_CHAR);
+ BIO_printf(bio_err," load the file (or the files in the directory) into\n");
+ BIO_printf(bio_err," the random number generator\n");
BIO_printf(bio_err," -newkey rsa:bits generate a new RSA key of 'bits' in size\n");
BIO_printf(bio_err," -newkey dsa:file generate a new DSA key, parameters taken from CA in 'file'\n");