Searched refs:BN_is_bit_set (Results 1 - 16 of 16) sorted by relevance

/freebsd-10-stable/crypto/openssl/crypto/bn/
H A Dbn_kron.c116 while (!BN_is_bit_set(B, i))
155 while (!BN_is_bit_set(A, i))
H A Dbn_exp2.c245 if (BN_is_bit_set(p1, b)) {
250 while (!BN_is_bit_set(p1, i)) /* works for i<0 */
256 if (BN_is_bit_set(p1, i))
262 if (BN_is_bit_set(p2, b)) {
267 while (!BN_is_bit_set(p2, i))
273 if (BN_is_bit_set(p2, i))
H A Dbn_rand.c232 /* BN_is_bit_set(range, n - 1) always holds */
236 else if (!BN_is_bit_set(range, n - 2) && !BN_is_bit_set(range, n - 3)) {
H A Dbn_exp.c167 if (BN_is_bit_set(p, i)) {
336 if (BN_is_bit_set(p, wstart) == 0) {
356 if (BN_is_bit_set(p, wstart - i)) {
482 if (BN_is_bit_set(p, wstart) == 0) {
503 if (BN_is_bit_set(p, wstart - i)) {
818 wvalue = (wvalue << 1) + BN_is_bit_set(p, bits);
827 wvalue = (wvalue << 1) + BN_is_bit_set(p, bits);
871 wvalue = (wvalue << 1) + BN_is_bit_set(p, bits);
887 wvalue = (wvalue << 1) + BN_is_bit_set(p, bits);
1021 if (BN_is_bit_set(
[all...]
H A Dbn_sqrt.c82 if (!BN_set_word(ret, BN_is_bit_set(a, 0))) {
130 while (!BN_is_bit_set(p, e))
H A Dbn_gcd.c302 while (!BN_is_bit_set(B, shift)) { /* note that 0 < B */
324 while (!BN_is_bit_set(A, shift)) { /* note that 0 < A */
H A Dbn_prime.c309 while (!BN_is_bit_set(A1, k))
H A Dbn_lib.c766 int BN_is_bit_set(const BIGNUM *a, int n) function
H A Dbn.h512 int BN_is_bit_set(const BIGNUM *a, int n);
H A Dbn_gf2m.c1009 if (BN_is_bit_set(b, i)) {
/freebsd-10-stable/crypto/openssh/regress/unittests/bitmap/
H A Dtests.c69 ASSERT_INT_EQ(BN_is_bit_set(bn, n),
101 ASSERT_INT_EQ(BN_is_bit_set(bn, n),
125 ASSERT_INT_EQ(BN_is_bit_set(bn, n),
/freebsd-10-stable/crypto/openssh/
H A Ddh.c245 if (BN_is_bit_set(dh_pub, i))
/freebsd-10-stable/usr.bin/dc/
H A Dinout.c413 ch |= BN_is_bit_set(v, numbits-i-1) << (7 - i);
H A Dbcode.c1222 while (!BN_is_bit_set(p->number, 0)) {
1235 if (BN_is_bit_set(p->number, 0)) {
/freebsd-10-stable/crypto/openssl/crypto/ec/
H A Dec_mult.c284 window_val += bit * BN_is_bit_set(scalar, j + w);
/freebsd-10-stable/secure/lib/libcrypto/
H A DMakefile.man389 MLINKS+= BN_set_bit.3 BN_is_bit_set.3

Completed in 200 milliseconds