summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/man/BN_add_word.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_add_word.3
parent762f343c10119424e3b764862c052c3088a454c9 (diff)
downloadopenbsd-9f245f7b9abbb01c441bdde1365f56140c5cf559.tar.gz
openbsd-9f245f7b9abbb01c441bdde1365f56140c5cf559.tar.bz2
openbsd-9f245f7b9abbb01c441bdde1365f56140c5cf559.zip
mention what BN_ULONG is
Diffstat (limited to 'src/lib/libcrypto/man/BN_add_word.3')
-rw-r--r--src/lib/libcrypto/man/BN_add_word.315
1 files changed, 12 insertions, 3 deletions
diff --git a/src/lib/libcrypto/man/BN_add_word.3 b/src/lib/libcrypto/man/BN_add_word.3
index 1156fe37a5..161029c302 100644
--- a/src/lib/libcrypto/man/BN_add_word.3
+++ b/src/lib/libcrypto/man/BN_add_word.3
@@ -1,5 +1,5 @@
1.\" $OpenBSD: BN_add_word.3,v 1.9 2019/06/10 14:58:48 schwarze Exp $ 1.\" $OpenBSD: BN_add_word.3,v 1.10 2022/11/22 19:02:07 schwarze Exp $
2.\" OpenSSL b97fdb57 Nov 11 09:33:09 2016 +0100 2.\" full merge up to: OpenSSL 9e183d22 Mar 11 08:56:44 2017 -0500
3.\" 3.\"
4.\" This file was written by Ulf Moeller <ulf@openssl.org>. 4.\" This file was written by Ulf Moeller <ulf@openssl.org>.
5.\" Copyright (c) 2000, 2005 The OpenSSL Project. All rights reserved. 5.\" Copyright (c) 2000, 2005 The OpenSSL Project. All rights reserved.
@@ -48,7 +48,7 @@
48.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 48.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
49.\" OF THE POSSIBILITY OF SUCH DAMAGE. 49.\" OF THE POSSIBILITY OF SUCH DAMAGE.
50.\" 50.\"
51.Dd $Mdocdate: June 10 2019 $ 51.Dd $Mdocdate: November 22 2022 $
52.Dt BN_ADD_WORD 3 52.Dt BN_ADD_WORD 3
53.Os 53.Os
54.Sh NAME 54.Sh NAME
@@ -91,6 +91,15 @@ integers.
91They are much more efficient than the normal BIGNUM arithmetic 91They are much more efficient than the normal BIGNUM arithmetic
92operations. 92operations.
93.Pp 93.Pp
94.Vt BN_ULONG
95is a macro that expands to
96.Vt unsigned long Pq = Vt uint64_t
97on
98.Dv _LP64
99platforms and
100.Vt unsigned int Pq = Vt uint32_t
101elsewhere.
102.Pp
94.Fn BN_add_word 103.Fn BN_add_word
95adds 104adds
96.Fa w 105.Fa w