summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2011-09-07 09:30:17 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2011-09-07 09:30:17 +0000
commit1260d574e7b3d392a9d88b3bcca52ed273942594 (patch)
tree8c78e3aa8013c97c001c188937d93430418b3999 /usr.sbin
parent574c680098077a749ed37b32039f1c56d1fbd2f8 (diff)
- update key size and alg recommendations; from Lawrence Teo
- whilst here, knock out useless Pp in openssl.1 ok djm markus
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/openssl/openssl.111
1 files changed, 5 insertions, 6 deletions
diff --git a/usr.sbin/openssl/openssl.1 b/usr.sbin/openssl/openssl.1
index f6014394dee..f88f9ac4097 100644
--- a/usr.sbin/openssl/openssl.1
+++ b/usr.sbin/openssl/openssl.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: openssl.1,v 1.85 2011/01/20 13:32:19 lum Exp $
+.\" $OpenBSD: openssl.1,v 1.86 2011/09/07 09:30:16 jmc Exp $
.\" ====================================================================
.\" Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved.
.\"
@@ -112,7 +112,7 @@
.\"
.\" OPENSSL
.\"
-.Dd $Mdocdate: January 20 2011 $
+.Dd $Mdocdate: September 7 2011 $
.Dt OPENSSL 1
.Os
.Sh NAME
@@ -6115,17 +6115,17 @@ Examine and verify a certificate request:
.Pp
Create a private key and then generate a certificate request from it:
.Bd -literal -offset indent
-$ openssl genrsa -out key.pem 1024
+$ openssl genrsa -out key.pem 2048
$ openssl req -new -key key.pem -out req.pem
.Ed
.Pp
The same but just using req:
.Pp
-.Dl $ openssl req -newkey rsa:1024 -keyout key.pem -out req.pem
+.Dl $ openssl req -newkey rsa:2048 -keyout key.pem -out req.pem
.Pp
Generate a self-signed root certificate:
.Pp
-.Dl "$ openssl req -x509 -newkey rsa:1024 -keyout key.pem -out req.pem"
+.Dl "$ openssl req -x509 -newkey rsa:2048 -keyout key.pem -out req.pem"
.Pp
Example of a file pointed to by the
.Ar oid_file
@@ -8891,7 +8891,6 @@ $ openssl ts -verify \e
-in design2.tsr -CAfile cacert.pem
.Ed
.Sh TS BUGS
-.Pp
No support for time stamps over SMTP, though it is quite easy
to implement an automatic email-based TSA with
.Xr procmail