diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/usr.sbin/openssl/openssl.1 | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/usr.sbin/openssl/openssl.1 b/src/usr.sbin/openssl/openssl.1 index f6014394de..f88f9ac409 100644 --- a/src/usr.sbin/openssl/openssl.1 +++ b/src/usr.sbin/openssl/openssl.1 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: openssl.1,v 1.85 2011/01/20 13:32:19 lum Exp $ | 1 | .\" $OpenBSD: openssl.1,v 1.86 2011/09/07 09:30:16 jmc Exp $ |
2 | .\" ==================================================================== | 2 | .\" ==================================================================== |
3 | .\" Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. | 3 | .\" Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. |
4 | .\" | 4 | .\" |
@@ -112,7 +112,7 @@ | |||
112 | .\" | 112 | .\" |
113 | .\" OPENSSL | 113 | .\" OPENSSL |
114 | .\" | 114 | .\" |
115 | .Dd $Mdocdate: January 20 2011 $ | 115 | .Dd $Mdocdate: September 7 2011 $ |
116 | .Dt OPENSSL 1 | 116 | .Dt OPENSSL 1 |
117 | .Os | 117 | .Os |
118 | .Sh NAME | 118 | .Sh NAME |
@@ -6115,17 +6115,17 @@ Examine and verify a certificate request: | |||
6115 | .Pp | 6115 | .Pp |
6116 | Create a private key and then generate a certificate request from it: | 6116 | Create a private key and then generate a certificate request from it: |
6117 | .Bd -literal -offset indent | 6117 | .Bd -literal -offset indent |
6118 | $ openssl genrsa -out key.pem 1024 | 6118 | $ openssl genrsa -out key.pem 2048 |
6119 | $ openssl req -new -key key.pem -out req.pem | 6119 | $ openssl req -new -key key.pem -out req.pem |
6120 | .Ed | 6120 | .Ed |
6121 | .Pp | 6121 | .Pp |
6122 | The same but just using req: | 6122 | The same but just using req: |
6123 | .Pp | 6123 | .Pp |
6124 | .Dl $ openssl req -newkey rsa:1024 -keyout key.pem -out req.pem | 6124 | .Dl $ openssl req -newkey rsa:2048 -keyout key.pem -out req.pem |
6125 | .Pp | 6125 | .Pp |
6126 | Generate a self-signed root certificate: | 6126 | Generate a self-signed root certificate: |
6127 | .Pp | 6127 | .Pp |
6128 | .Dl "$ openssl req -x509 -newkey rsa:1024 -keyout key.pem -out req.pem" | 6128 | .Dl "$ openssl req -x509 -newkey rsa:2048 -keyout key.pem -out req.pem" |
6129 | .Pp | 6129 | .Pp |
6130 | Example of a file pointed to by the | 6130 | Example of a file pointed to by the |
6131 | .Ar oid_file | 6131 | .Ar oid_file |
@@ -8891,7 +8891,6 @@ $ openssl ts -verify \e | |||
8891 | -in design2.tsr -CAfile cacert.pem | 8891 | -in design2.tsr -CAfile cacert.pem |
8892 | .Ed | 8892 | .Ed |
8893 | .Sh TS BUGS | 8893 | .Sh TS BUGS |
8894 | .Pp | ||
8895 | No support for time stamps over SMTP, though it is quite easy | 8894 | No support for time stamps over SMTP, though it is quite easy |
8896 | to implement an automatic email-based TSA with | 8895 | to implement an automatic email-based TSA with |
8897 | .Xr procmail | 8896 | .Xr procmail |