Symbol: BN_rshift
crypto/openssh/moduli.c
689
if (BN_rshift(q, p, 1) == 0)
crypto/openssl/crypto/bn/bn_gcd.c
297
if (!BN_rshift(B, B, shift))
crypto/openssl/crypto/bn/bn_gcd.c
317
if (!BN_rshift(A, A, shift))
crypto/openssl/crypto/bn/bn_gcd.c
635
if (!BN_rshift(r, r, pow2_shifts)
crypto/openssl/crypto/bn/bn_gcd.c
636
|| !BN_rshift(g, g, pow2_shifts))
crypto/openssl/crypto/bn/bn_kron.c
111
err = !BN_rshift(A, A, i);
crypto/openssl/crypto/bn/bn_kron.c
72
err = !BN_rshift(B, B, i);
crypto/openssl/crypto/bn/bn_mont.c
206
if (!BN_rshift(ret, t2, mont->ri))
crypto/openssl/crypto/bn/bn_prime.c
385
if (!BN_rshift(m, w1, a))
crypto/openssl/crypto/bn/bn_recp.c
130
if (!BN_rshift(a, m, recp->num_bits))
crypto/openssl/crypto/bn/bn_recp.c
134
if (!BN_rshift(d, b, i - recp->num_bits))
crypto/openssl/crypto/bn/bn_sqrt.c
141
if (!BN_rshift(q, p, 3))
crypto/openssl/crypto/bn/bn_sqrt.c
219
if (!BN_rshift(q, q, e))
crypto/openssl/crypto/bn/bn_sqrt.c
96
if (!BN_rshift(q, p, 2))
crypto/openssl/crypto/deterministic_nonce.c
39
return BN_rshift(out, out, shift);
crypto/openssl/crypto/ec/ecdsa_ossl.c
335
if ((8 * dgst_len > i) && !BN_rshift(m, m, 8 - (i & 0x7))) {
crypto/openssl/crypto/ec/ecdsa_ossl.c
509
if ((8 * dgst_len > i) && !BN_rshift(m, m, 8 - (i & 0x7))) {
crypto/openssl/crypto/rsa/rsa_gen.c
472
if (!BN_rshift(r2, r1, bitse - 4))
crypto/openssl/crypto/rsa/rsa_sp800_56b_check.c
118
} else if (!BN_rshift(low, low, -shift)) {
crypto/openssl/include/openssl/bn.h
336
int BN_rshift(BIGNUM *r, const BIGNUM *a, int n);
crypto/openssl/test/bntest.c
1392
|| !TEST_true(BN_rshift(ret, lshift, n))
crypto/openssl/test/bntest.c
1415
if (!TEST_true(BN_rshift(ret, a, n))
crypto/openssl/test/ectest.c
1354
|| !TEST_true(BN_rshift(m, n, 1)))