#include <openssl/bn.h>
#include <openssl/mem.h>
#include <openssl/type_check.h>
#include "internal.h"
#include "../../internal.h"
Go to the source code of this file.
Functions | |
int | BN_abs_is_word (const BIGNUM *bn, BN_ULONG w) |
int | BN_cmp (const BIGNUM *a, const BIGNUM *b) |
int | BN_cmp_word (const BIGNUM *a, BN_ULONG b) |
static int | bn_cmp_words_consttime (const BN_ULONG *a, size_t a_len, const BN_ULONG *b, size_t b_len) |
int | BN_equal_consttime (const BIGNUM *a, const BIGNUM *b) |
int | BN_is_odd (const BIGNUM *bn) |
int | BN_is_one (const BIGNUM *bn) |
int | BN_is_pow2 (const BIGNUM *bn) |
int | BN_is_word (const BIGNUM *bn, BN_ULONG w) |
int | BN_is_zero (const BIGNUM *bn) |
int | bn_less_than_words (const BN_ULONG *a, const BN_ULONG *b, size_t len) |
int | BN_ucmp (const BIGNUM *a, const BIGNUM *b) |