summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorschwarze <schwarze@openbsd.org>2017-01-06 18:21:55 +0000
committerschwarze <schwarze@openbsd.org>2017-01-06 18:21:55 +0000
commit4cb07315fb022ae4b2dd051b04e1fd876b6ade78 (patch)
treee06d512cb45e0ce787808d538731839a647c9ca8
parentRemove a dangling .Xr to PKCS7_SIGNER_INFO_sign(3) reported by jmc@ (diff)
downloadwireguard-openbsd-4cb07315fb022ae4b2dd051b04e1fd876b6ade78.tar.xz
wireguard-openbsd-4cb07315fb022ae4b2dd051b04e1fd876b6ade78.zip
Remove dangling .Xrs to PKCS7_final(3) reported by jmc@
and just use .Fn for now. Not counting constructors, destructors, decoders, encoders, and debuggers, six out of 24 public functions operating on PKCS7 objects are currently documented. I'm not documenting the remaining 18 ones at this point in time.
-rw-r--r--lib/libcrypto/man/PKCS7_sign.36
-rw-r--r--lib/libcrypto/man/PKCS7_sign_add_signer.35
2 files changed, 5 insertions, 6 deletions
diff --git a/lib/libcrypto/man/PKCS7_sign.3 b/lib/libcrypto/man/PKCS7_sign.3
index c4c0b3d8b77..86726a71e6d 100644
--- a/lib/libcrypto/man/PKCS7_sign.3
+++ b/lib/libcrypto/man/PKCS7_sign.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: PKCS7_sign.3,v 1.5 2016/12/13 15:00:22 schwarze Exp $
+.\" $OpenBSD: PKCS7_sign.3,v 1.6 2017/01/06 18:21:55 schwarze Exp $
.\" OpenSSL 99d63d46 Oct 26 13:56:48 2016 -0400
.\"
.\" This file was written by Dr. Stephen Henson <steve@openssl.org>.
@@ -49,7 +49,7 @@
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
.\" OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd $Mdocdate: December 13 2016 $
+.Dd $Mdocdate: January 6 2017 $
.Dt PKCS7_SIGN 3
.Os
.Sh NAME
@@ -196,7 +196,7 @@ if the
flag is set.
One or more signers can be added using the function
.Xr PKCS7_sign_add_signer 3 .
-.Xr PKCS7_final 3
+.Fn PKCS7_final
must also be called to finalize the structure if streaming is not
enabled.
Alternative signing digests can also be specified using this method.
diff --git a/lib/libcrypto/man/PKCS7_sign_add_signer.3 b/lib/libcrypto/man/PKCS7_sign_add_signer.3
index 7f06573e64e..d4863210435 100644
--- a/lib/libcrypto/man/PKCS7_sign_add_signer.3
+++ b/lib/libcrypto/man/PKCS7_sign_add_signer.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: PKCS7_sign_add_signer.3,v 1.6 2017/01/06 17:59:58 schwarze Exp $
+.\" $OpenBSD: PKCS7_sign_add_signer.3,v 1.7 2017/01/06 18:21:55 schwarze Exp $
.\" OpenSSL 99d63d46 Oct 26 13:56:48 2016 -0400
.\"
.\" This file was written by Dr. Stephen Henson <steve@openssl.org>.
@@ -100,7 +100,7 @@ flag is set, the returned
.Dv PKCS7
structure is not complete and must be
finalized either by streaming (if applicable) or by a call to
-.Xr PKCS7_final 3 .
+.Fn PKCS7_final .
.Pp
The main purpose of this function is to provide finer control over a
PKCS#7 signed data structure where the simpler
@@ -172,7 +172,6 @@ structure just added or
if an error occurs.
.Sh SEE ALSO
.Xr ERR_get_error 3 ,
-.Xr PKCS7_final 3 ,
.Xr PKCS7_new 3 ,
.Xr PKCS7_sign 3
.Sh HISTORY