#include <openssl/bn.h>
#include <string.h>
#include <openssl/err.h>
#include <openssl/mem.h>
#include "internal.h"
Go to the source code of this file.
Functions | |
int | BN_add (BIGNUM *r, const BIGNUM *a, const BIGNUM *b) |
int | BN_add_word (BIGNUM *a, BN_ULONG w) |
int | BN_sub (BIGNUM *r, const BIGNUM *a, const BIGNUM *b) |
int | BN_sub_word (BIGNUM *a, BN_ULONG w) |
int | BN_uadd (BIGNUM *r, const BIGNUM *a, const BIGNUM *b) |
int | bn_uadd_consttime (BIGNUM *r, const BIGNUM *a, const BIGNUM *b) |
int | BN_usub (BIGNUM *r, const BIGNUM *a, const BIGNUM *b) |
int | bn_usub_consttime (BIGNUM *r, const BIGNUM *a, const BIGNUM *b) |