diff options
author | schwarze <> | 2022-11-22 19:00:15 +0000 |
---|---|---|
committer | schwarze <> | 2022-11-22 19:00:15 +0000 |
commit | 762f343c10119424e3b764862c052c3088a454c9 (patch) | |
tree | acc9ba2e1bdff441e3db2b3d351a3605e0e67f2a | |
parent | 5a9e2017d44311cc61942a4b59d39f5d6eb1f00c (diff) | |
download | openbsd-762f343c10119424e3b764862c052c3088a454c9.tar.gz openbsd-762f343c10119424e3b764862c052c3088a454c9.tar.bz2 openbsd-762f343c10119424e3b764862c052c3088a454c9.zip |
Remove the lie that BN_ULONG might be 16 bits wide.
We don't install this page, but it might possibly still help developers
working on internals of the BN library, so i'm not in a hurry to cvs rm
this file.
-rw-r--r-- | src/lib/libcrypto/man/bn_dump.3 | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/src/lib/libcrypto/man/bn_dump.3 b/src/lib/libcrypto/man/bn_dump.3 index 6deac4db25..36ae660785 100644 --- a/src/lib/libcrypto/man/bn_dump.3 +++ b/src/lib/libcrypto/man/bn_dump.3 | |||
@@ -1,5 +1,6 @@ | |||
1 | .\" $OpenBSD: bn_dump.3,v 1.6 2016/12/10 21:32:14 schwarze Exp $ | 1 | .\" $OpenBSD: bn_dump.3,v 1.7 2022/11/22 19:00:15 schwarze Exp $ |
2 | .\" OpenSSL crypto/bn/README.pod aebb9aac Jul 19 09:27:53 2016 -0400 | 2 | .\" full merge up to: |
3 | .\" OpenSSL crypto/bn/README.pod aebb9aac Jul 19 09:27:53 2016 -0400 | ||
3 | .\" | 4 | .\" |
4 | .\" This file was written by Ulf Moeller <ulf@openssl.org>. | 5 | .\" This file was written by Ulf Moeller <ulf@openssl.org>. |
5 | .\" Copyright (c) 2000, 2003, 2006, 2009 The OpenSSL Project. | 6 | .\" Copyright (c) 2000, 2003, 2006, 2009 The OpenSSL Project. |
@@ -49,7 +50,7 @@ | |||
49 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | 50 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
50 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. | 51 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. |
51 | .\" | 52 | .\" |
52 | .Dd $Mdocdate: December 10 2016 $ | 53 | .Dd $Mdocdate: November 22 2022 $ |
53 | .Dt BN_DUMP 3 | 54 | .Dt BN_DUMP 3 |
54 | .Os | 55 | .Os |
55 | .Sh NAME | 56 | .Sh NAME |
@@ -320,13 +321,14 @@ a | |||
320 | array of words | 321 | array of words |
321 | .Pq Vt BN_ULONG , | 322 | .Pq Vt BN_ULONG , |
322 | least significant word first. | 323 | least significant word first. |
323 | A | ||
324 | .Vt BN_ULONG | 324 | .Vt BN_ULONG |
325 | can be either 16, 32 or 64 bits in size, depending on the 'number of | 325 | is a macro that expands to |
326 | bits' | 326 | .Vt unsigned long Pq = Vt uint64_t |
327 | .Pq Dv BITS2 | 327 | on |
328 | specified in | 328 | .Dv _LP64 |
329 | .In openssl/bn.h . | 329 | platforms and |
330 | .Vt unsigned int Pq = Vt uint32_t | ||
331 | elsewhere. | ||
330 | .Pp | 332 | .Pp |
331 | .Fa dmax | 333 | .Fa dmax |
332 | is the size of the | 334 | is the size of the |