Lines Matching defs:bn
70 BIGNUM *bn = OPENSSL_malloc(sizeof(BIGNUM)); in BN_new() local
83 void BN_init(BIGNUM *bn) { in BN_init()
87 void BN_free(BIGNUM *bn) { in BN_free()
103 void BN_clear_free(BIGNUM *bn) { in BN_clear_free()
162 void BN_clear(BIGNUM *bn) { in BN_clear()
229 unsigned BN_num_bits(const BIGNUM *bn) { in BN_num_bits()
238 unsigned BN_num_bytes(const BIGNUM *bn) { in BN_num_bytes()
242 void BN_zero(BIGNUM *bn) { in BN_zero()
246 int BN_one(BIGNUM *bn) { in BN_one()
250 int BN_set_word(BIGNUM *bn, BN_ULONG value) { in BN_set_word()
266 int BN_set_u64(BIGNUM *bn, uint64_t value) { in BN_set_u64()
288 int bn_set_words(BIGNUM *bn, const BN_ULONG *words, size_t num) { in bn_set_words()
300 int bn_fits_in_words(const BIGNUM *bn, size_t num) { in bn_fits_in_words()
309 int bn_copy_words(BN_ULONG *out, size_t num, const BIGNUM *bn) { in bn_copy_words()
329 int BN_is_negative(const BIGNUM *bn) { in BN_is_negative()
333 void BN_set_negative(BIGNUM *bn, int sign) { in BN_set_negative()
341 int bn_wexpand(BIGNUM *bn, size_t words) { in bn_wexpand()
373 int bn_expand(BIGNUM *bn, size_t bits) { in bn_expand()
381 int bn_resize_words(BIGNUM *bn, size_t words) { in bn_resize_words()
400 int bn_minimal_width(const BIGNUM *bn) { in bn_minimal_width()
408 void bn_correct_top(BIGNUM *bn) { in bn_correct_top()