summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/man/BN_zero.3
diff options
context:
space:
mode:
authorschwarze <>2022-11-22 19:02:07 +0000
committerschwarze <>2022-11-22 19:02:07 +0000
commit9f245f7b9abbb01c441bdde1365f56140c5cf559 (patch)
tree4c7377ef945ba4c0b781550160ede8e5580e11d7 /src/lib/libcrypto/man/BN_zero.3
parent762f343c10119424e3b764862c052c3088a454c9 (diff)
downloadopenbsd-9f245f7b9abbb01c441bdde1365f56140c5cf559.tar.gz
openbsd-9f245f7b9abbb01c441bdde1365f56140c5cf559.tar.bz2
openbsd-9f245f7b9abbb01c441bdde1365f56140c5cf559.zip
mention what BN_ULONG is
Diffstat (limited to '')
-rw-r--r--src/lib/libcrypto/man/BN_zero.313
1 files changed, 10 insertions, 3 deletions
diff --git a/src/lib/libcrypto/man/BN_zero.3 b/src/lib/libcrypto/man/BN_zero.3
index aa3e8a0682..876e1c3fde 100644
--- a/src/lib/libcrypto/man/BN_zero.3
+++ b/src/lib/libcrypto/man/BN_zero.3
@@ -1,11 +1,11 @@
1.\" $OpenBSD: BN_zero.3,v 1.11 2021/12/19 16:18:34 schwarze Exp $ 1.\" $OpenBSD: BN_zero.3,v 1.12 2022/11/22 19:02:07 schwarze Exp $
2.\" full merge up to: OpenSSL a528d4f0 Oct 27 13:40:11 2015 -0400 2.\" full merge up to: OpenSSL a528d4f0 Oct 27 13:40:11 2015 -0400
3.\" selective merge up to: OpenSSL b713c4ff Jan 22 14:41:09 2018 -0500 3.\" selective merge up to: OpenSSL b713c4ff Jan 22 14:41:09 2018 -0500
4.\" 4.\"
5.\" This file is a derived work. 5.\" This file is a derived work.
6.\" The changes are covered by the following Copyright and license: 6.\" The changes are covered by the following Copyright and license:
7.\" 7.\"
8.\" Copyright (c) 2021 Ingo Schwarze <schwarze@openbsd.org> 8.\" Copyright (c) 2021, 2022 Ingo Schwarze <schwarze@openbsd.org>
9.\" 9.\"
10.\" Permission to use, copy, modify, and distribute this software for any 10.\" Permission to use, copy, modify, and distribute this software for any
11.\" purpose with or without fee is hereby granted, provided that the above 11.\" purpose with or without fee is hereby granted, provided that the above
@@ -67,7 +67,7 @@
67.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 67.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
68.\" OF THE POSSIBILITY OF SUCH DAMAGE. 68.\" OF THE POSSIBILITY OF SUCH DAMAGE.
69.\" 69.\"
70.Dd $Mdocdate: December 19 2021 $ 70.Dd $Mdocdate: November 22 2022 $
71.Dt BN_ZERO 3 71.Dt BN_ZERO 3
72.Os 72.Os
73.Sh NAME 73.Sh NAME
@@ -109,6 +109,13 @@
109.Vt BN_ULONG 109.Vt BN_ULONG
110is a macro that expands to an unsigned integral type optimized 110is a macro that expands to an unsigned integral type optimized
111for the most efficient implementation on the local platform. 111for the most efficient implementation on the local platform.
112It is
113.Vt unsigned long Pq = Vt uint64_t
114on
115.Dv _LP64
116platforms and
117.Vt unsigned int Pq = Vt uint32_t
118elsewhere.
112.Pp 119.Pp
113.Fn BN_zero_ex , 120.Fn BN_zero_ex ,
114.Fn BN_one , 121.Fn BN_one ,