1BN_ADD_WORD(3ossl)                  OpenSSL                 BN_ADD_WORD(3ossl)
2
3
4

NAME

6       BN_add_word, BN_sub_word, BN_mul_word, BN_div_word, BN_mod_word -
7       arithmetic functions on BIGNUMs with integers
8

SYNOPSIS

10        #include <openssl/bn.h>
11
12        int BN_add_word(BIGNUM *a, BN_ULONG w);
13
14        int BN_sub_word(BIGNUM *a, BN_ULONG w);
15
16        int BN_mul_word(BIGNUM *a, BN_ULONG w);
17
18        BN_ULONG BN_div_word(BIGNUM *a, BN_ULONG w);
19
20        BN_ULONG BN_mod_word(const BIGNUM *a, BN_ULONG w);
21

DESCRIPTION

23       These functions perform arithmetic operations on BIGNUMs with unsigned
24       integers. They are much more efficient than the normal BIGNUM
25       arithmetic operations.
26
27       BN_add_word() adds w to a ("a+=w").
28
29       BN_sub_word() subtracts w from a ("a-=w").
30
31       BN_mul_word() multiplies a and w ("a*=w").
32
33       BN_div_word() divides a by w ("a/=w") and returns the remainder.
34
35       BN_mod_word() returns the remainder of a divided by w ("a%w").
36
37       For BN_div_word() and BN_mod_word(), w must not be 0.
38

RETURN VALUES

40       BN_add_word(), BN_sub_word() and BN_mul_word() return 1 for success, 0
41       on error. The error codes can be obtained by ERR_get_error(3).
42
43       BN_mod_word() and BN_div_word() return a%w on success and (BN_ULONG)-1
44       if an error occurred.
45

SEE ALSO

47       ERR_get_error(3), BN_add(3)
48
50       Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
51
52       Licensed under the Apache License 2.0 (the "License").  You may not use
53       this file except in compliance with the License.  You can obtain a copy
54       in the file LICENSE in the source distribution or at
55       <https://www.openssl.org/source/license.html>.
56
57
58
593.0.5                             2022-07-05                BN_ADD_WORD(3ossl)
Impressum