Symbol: BN_lshift
crypto/openssh/moduli.c
672
if (BN_lshift(p, q, 1) == 0)
crypto/openssl/crypto/bn/bn_div.c
66
if (!BN_lshift(D, D, nm - nd))
crypto/openssl/crypto/bn/bn_gcd.c
456
if (!BN_lshift(tmp, X, 2))
crypto/openssl/crypto/bn/bn_gcd.c
679
if (!BN_lshift(r, r, pow2_shifts)
crypto/openssl/crypto/bn/bn_mod.c
315
if (!BN_lshift(r, r, max_shift))
crypto/openssl/crypto/bn/bn_mont.c
315
if (!BN_lshift(Ri, Ri, 2 * BN_BITS2))
crypto/openssl/crypto/bn/bn_mont.c
350
if (!BN_lshift(Ri, Ri, BN_BITS2))
crypto/openssl/crypto/bn/bn_mont.c
378
if (!BN_lshift(Ri, Ri, mont->ri))
crypto/openssl/crypto/bn/bn_rsa_fips186_4.c
312
if (!BN_lshift(base, &ossl_bn_inv_sqrt_2,
crypto/openssl/crypto/bn/bn_rsa_fips186_4.c
314
|| !BN_lshift(range, BN_value_one(), bits)
crypto/openssl/crypto/bn/bn_word.c
77
if (!BN_lshift(a, a, j))
crypto/openssl/crypto/dh/dh_check.c
315
if (!BN_lshift(two_powN, BN_value_one(), dh->length))
crypto/openssl/crypto/ec/ecp_smpl.c
299
if (!BN_lshift(tmp_1, tmp_2, 2))
crypto/openssl/crypto/ffc/ffc_key_generate.c
40
if (two_powN == NULL || !BN_lshift(two_powN, BN_value_one(), N))
crypto/openssl/crypto/ffc/ffc_params_generate.c
211
if (!BN_lshift(test, BN_value_one(), L - 1))
crypto/openssl/crypto/ffc/ffc_params_generate.c
251
|| !BN_lshift(tmp, tmp, (mdsize << 3) * j)
crypto/openssl/crypto/ffc/ffc_params_generate.c
682
if (!BN_lshift(test, BN_value_one(), L - 1))
crypto/openssl/crypto/ffc/ffc_params_generate.c
901
if (!BN_lshift(test, BN_value_one(), L - 1))
crypto/openssl/crypto/objects/obj_dat.c
542
if (!BN_lshift(bl, bl, 7))
crypto/openssl/crypto/rsa/rsa_sp800_56b_check.c
116
if (!BN_lshift(low, low, shift))
crypto/openssl/include/openssl/bn.h
306
int BN_lshift(BIGNUM *r, const BIGNUM *a, int n);
crypto/openssl/test/bntest.c
1390
if (!TEST_true(BN_lshift(ret, a, n))
crypto/openssl/test/bntest.c
294
&& TEST_true(BN_lshift(a, a, i))
crypto/openssl/test/dhtest.c
138
|| !TEST_true(BN_lshift(p, p, OPENSSL_DH_CHECK_MAX_MODULUS_BITS)))
crypto/openssl/test/ectest.c
2712
|| !TEST_true(BN_lshift(g1_order, g1_p, 2))
crypto/openssl/test/rsa_sp800_56b_test.c
128
&& TEST_true(BN_lshift(e, BN_value_one(), 256))