summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/man/BN_zero.3
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/man/BN_zero.3')
-rw-r--r--src/lib/libcrypto/man/BN_zero.312
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/libcrypto/man/BN_zero.3 b/src/lib/libcrypto/man/BN_zero.3
index 0b677b246f..d94a2a10da 100644
--- a/src/lib/libcrypto/man/BN_zero.3
+++ b/src/lib/libcrypto/man/BN_zero.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: BN_zero.3,v 1.13 2023/04/30 19:23:54 tb Exp $ 1.\" $OpenBSD: BN_zero.3,v 1.16 2025/12/15 12:09:46 tb 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.\"
@@ -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: April 30 2023 $ 70.Dd $Mdocdate: December 15 2025 $
71.Dt BN_ZERO 3 71.Dt BN_ZERO 3
72.Os 72.Os
73.Sh NAME 73.Sh NAME
@@ -78,8 +78,9 @@
78.Nm BN_get_word 78.Nm BN_get_word
79.Nd BIGNUM assignment operations 79.Nd BIGNUM assignment operations
80.Sh SYNOPSIS 80.Sh SYNOPSIS
81.Lb libcrypto
81.In openssl/bn.h 82.In openssl/bn.h
82.Ft int 83.Ft void
83.Fo BN_zero 84.Fo BN_zero
84.Fa "BIGNUM *a" 85.Fa "BIGNUM *a"
85.Fc 86.Fc
@@ -131,13 +132,12 @@ This constant is useful for comparisons and assignments.
131.Fn BN_get_word 132.Fn BN_get_word
132returns the value 133returns the value
133.Fa a , 134.Fa a ,
134or a number with all bits set if 135or (BN_ULONG)\-1 if
135.Fa a 136.Fa a
136cannot be represented as a 137cannot be represented as a
137.Vt BN_ULONG . 138.Vt BN_ULONG .
138.Pp 139.Pp
139.Fn BN_zero , 140.Fn BN_one
140.Fn BN_one ,
141and 141and
142.Fn BN_set_word 142.Fn BN_set_word
143return 1 on success, 0 otherwise. 143return 1 on success, 0 otherwise.