diff options
author | jmc <> | 2005-04-29 09:31:05 +0000 |
---|---|---|
committer | jmc <> | 2005-04-29 09:31:05 +0000 |
commit | b9eaa570507dab5c979060383d2003ccb5242f91 (patch) | |
tree | 1fec0a98679219cd9eea10d2e68b3597353babaa | |
parent | 9e5479d4922a11ebf56255e76cd08dc2d7bf343b (diff) | |
download | openbsd-b9eaa570507dab5c979060383d2003ccb5242f91.tar.gz openbsd-b9eaa570507dab5c979060383d2003ccb5242f91.tar.bz2 openbsd-b9eaa570507dab5c979060383d2003ccb5242f91.zip |
fixes/updates from openssl-0.9.7g;
-rw-r--r-- | src/usr.sbin/openssl/openssl.1 | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/src/usr.sbin/openssl/openssl.1 b/src/usr.sbin/openssl/openssl.1 index cd76d416ab..767c9fcb15 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.50 2004/12/03 01:41:17 jmc Exp $ | 1 | .\" $OpenBSD: openssl.1,v 1.51 2005/04/29 09:31:05 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 | .\" |
@@ -581,7 +581,7 @@ Example: | |||
581 | .Pp | 581 | .Pp |
582 | .Dl \&"1.2.3.4 shortname A long name\&" | 582 | .Dl \&"1.2.3.4 shortname A long name\&" |
583 | .Sh ASN1PARSE BUGS | 583 | .Sh ASN1PARSE BUGS |
584 | There should be options to change the format of input lines. | 584 | There should be options to change the format of output lines. |
585 | The output of some ASN.1 types is not well handled | 585 | The output of some ASN.1 types is not well handled |
586 | .Pq if at all . | 586 | .Pq if at all . |
587 | .\" | 587 | .\" |
@@ -1859,6 +1859,7 @@ install user certificates and CAs in MSIE using the Xenroll control. | |||
1859 | .Op Fl engine Ar id | 1859 | .Op Fl engine Ar id |
1860 | .Op Fl keyform Ar ENGINE | PEM | 1860 | .Op Fl keyform Ar ENGINE | PEM |
1861 | .Op Fl out Ar file | 1861 | .Op Fl out Ar file |
1862 | .Op Fl passin Ar arg | ||
1862 | .Op Fl prverify Ar file | 1863 | .Op Fl prverify Ar file |
1863 | .Op Fl rand Ar file ... | 1864 | .Op Fl rand Ar file ... |
1864 | .Op Fl sign Ar file | 1865 | .Op Fl sign Ar file |
@@ -1910,6 +1911,13 @@ digest as opposed to a digital signature. | |||
1910 | Key file format. | 1911 | Key file format. |
1911 | .It Fl out Ar file | 1912 | .It Fl out Ar file |
1912 | file to output to, or standard output by default. | 1913 | file to output to, or standard output by default. |
1914 | .It Fl passin Ar arg | ||
1915 | The key password source. | ||
1916 | For more information about the format of | ||
1917 | .Ar arg , | ||
1918 | see the | ||
1919 | .Sx PASS PHRASE ARGUMENTS | ||
1920 | section above. | ||
1913 | .It Fl prverify Ar file | 1921 | .It Fl prverify Ar file |
1914 | Verify the signature using the private key in | 1922 | Verify the signature using the private key in |
1915 | .Ar file . | 1923 | .Ar file . |
@@ -2741,6 +2749,18 @@ The options are as follows: | |||
2741 | .It Fl stats | 2749 | .It Fl stats |
2742 | Print debugging statistics about various aspects of the hash table. | 2750 | Print debugging statistics about various aspects of the hash table. |
2743 | .El | 2751 | .El |
2752 | .Sh ERRSTR EXAMPLES | ||
2753 | The following error code: | ||
2754 | .Pp | ||
2755 | .Dl 27594:error:2006D080:lib(32):func(109):reason(128):bss_file.c:107: | ||
2756 | .Pp | ||
2757 | \&...can be displayed with: | ||
2758 | .Pp | ||
2759 | .Dl $ openssl errstr 2006D080 | ||
2760 | .Pp | ||
2761 | \&...to produce the error message: | ||
2762 | .Pp | ||
2763 | .Dl error:2006D080:BIO routines:BIO_new_file:no such file | ||
2744 | .\" | 2764 | .\" |
2745 | .\" GENDH | 2765 | .\" GENDH |
2746 | .\" | 2766 | .\" |