/third_party/node/deps/openssl/openssl/crypto/ffc/ |
H A D | ffc_key_generate.c | 40 if (two_powN == NULL || !BN_lshift(two_powN, BN_value_one(), N)) in ossl_ffc_generate_private_key()
|
H A D | ffc_params_generate.c | 211 if (!BN_lshift(test, BN_value_one(), L - 1)) in generate_p() 251 || !BN_lshift(tmp, tmp, (mdsize << 3) * j) in generate_p() 679 if (!BN_lshift(test, BN_value_one(), L - 1)) in ossl_ffc_params_FIPS186_4_gen_verify() 894 if (!BN_lshift(test, BN_value_one(), L - 1)) in ossl_ffc_params_FIPS186_2_gen_verify()
|
/third_party/openssl/crypto/ffc/ |
H A D | ffc_key_generate.c | 40 if (two_powN == NULL || !BN_lshift(two_powN, BN_value_one(), N)) in ossl_ffc_generate_private_key()
|
H A D | ffc_params_generate.c | 211 if (!BN_lshift(test, BN_value_one(), L - 1)) in generate_p() 251 || !BN_lshift(tmp, tmp, (mdsize << 3) * j) in generate_p() 679 if (!BN_lshift(test, BN_value_one(), L - 1)) in ossl_ffc_params_FIPS186_4_gen_verify() 894 if (!BN_lshift(test, BN_value_one(), L - 1)) in ossl_ffc_params_FIPS186_2_gen_verify()
|
/third_party/node/deps/openssl/openssl/crypto/bn/ |
H A D | bn_rsa_fips186_4.c | 282 if (!BN_lshift(base, &ossl_bn_inv_sqrt_2, in ossl_bn_rsa_fips186_4_derive_prime() 284 || !BN_lshift(range, BN_value_one(), bits) in ossl_bn_rsa_fips186_4_derive_prime()
|
H A D | bn_mont.c | 318 if (!BN_lshift(Ri, Ri, 2 * BN_BITS2)) in BN_MONT_CTX_set() 353 if (!BN_lshift(Ri, Ri, BN_BITS2)) in BN_MONT_CTX_set() 381 if (!BN_lshift(Ri, Ri, mont->ri)) in BN_MONT_CTX_set()
|
H A D | bn_word.c | 78 if (!BN_lshift(a, a, j)) in BN_div_word()
|
H A D | bn_gcd.c | 456 if (!BN_lshift(tmp, X, 2)) in int_bn_mod_inverse() 637 if (!BN_lshift(r, r, shifts) in BN_gcd()
|
H A D | bn_shift.c | 81 int BN_lshift(BIGNUM *r, const BIGNUM *a, int n) in BN_lshift() function
|
H A D | bn_mod.c | 316 if (!BN_lshift(r, r, max_shift)) in BN_mod_lshift_quick()
|
H A D | bn_div.c | 66 if (!BN_lshift(D, D, nm - nd))
|
/third_party/openssl/crypto/bn/ |
H A D | bn_rsa_fips186_4.c | 282 if (!BN_lshift(base, &ossl_bn_inv_sqrt_2, in ossl_bn_rsa_fips186_4_derive_prime() 284 || !BN_lshift(range, BN_value_one(), bits) in ossl_bn_rsa_fips186_4_derive_prime()
|
H A D | bn_mont.c | 318 if (!BN_lshift(Ri, Ri, 2 * BN_BITS2)) in BN_MONT_CTX_set() 353 if (!BN_lshift(Ri, Ri, BN_BITS2)) in BN_MONT_CTX_set() 381 if (!BN_lshift(Ri, Ri, mont->ri)) in BN_MONT_CTX_set()
|
H A D | bn_word.c | 78 if (!BN_lshift(a, a, j)) in BN_div_word()
|
H A D | bn_gcd.c | 456 if (!BN_lshift(tmp, X, 2)) in int_bn_mod_inverse() 637 if (!BN_lshift(r, r, shifts) in BN_gcd()
|
H A D | bn_shift.c | 81 int BN_lshift(BIGNUM *r, const BIGNUM *a, int n) in BN_lshift() function
|
H A D | bn_mod.c | 306 if (!BN_lshift(r, r, max_shift)) in BN_mod_lshift_quick()
|
H A D | bn_div.c | 66 if (!BN_lshift(D, D, nm - nd))
|
/third_party/node/deps/openssl/openssl/crypto/dh/ |
H A D | dh_check.c | 314 if (!BN_lshift(two_powN, BN_value_one(), dh->length)) in ossl_dh_check_priv_key()
|
/third_party/openssl/crypto/dh/ |
H A D | dh_check.c | 312 if (!BN_lshift(two_powN, BN_value_one(), dh->length)) in ossl_dh_check_priv_key()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
H A D | bn.rs | 96 pub fn BN_lshift(r: *mut BIGNUM, a: *const BIGNUM, n: c_int) -> c_int; in BN_lshift() functions
|
/third_party/node/src/crypto/ |
H A D | crypto_aes.cc | 273 if (!BN_lshift(num_counters.get(), BN_value_one(), params.length)) in AES_CTR_Cipher()
|
/third_party/node/deps/openssl/openssl/crypto/rsa/ |
H A D | rsa_sp800_56b_check.c | 116 if (!BN_lshift(low, low, shift)) in ossl_rsa_check_prime_factor_range()
|
/third_party/openssl/crypto/rsa/ |
H A D | rsa_sp800_56b_check.c | 116 if (!BN_lshift(low, low, shift)) in ossl_rsa_check_prime_factor_range()
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | bn.rs | 289 #[corresponds(BN_lshift)] 292 unsafe { cvt(ffi::BN_lshift(self.as_ptr(), a.as_ptr(), n.into())).map(|_| ()) } in lshift()
|