![]() | ![]() | ||||||||||||||
| |||||||||||||||
| BN_add_word(3)
NAMEBN_add_word, BN_sub_word, BN_mul_word, BN_div_word, BN_mod_word - arithmetic functions on BIGNUMs with integers
SYNOPSIS#include <openssl/bn.h> int BN_add_word(BIGNUM *a, BN_ULONG w); int BN_sub_word(BIGNUM *a, BN_ULONG w); int BN_mul_word(BIGNUM *a, BN_ULONG w); BN_ULONG BN_div_word(BIGNUM *a, BN_ULONG w); BN_ULONG BN_mod_word(const BIGNUM *a, BN_ULONG w);
DESCRIPTIONThese functions perform arithmetic operations on BIGNUMs with unsigned integers. They are much more efficient than the normal BIGNUM arithmetic operations.
For
RETURN VALUES
SEE ALSO
HISTORY
| ||||||||||||||