Home
last modified time | relevance | path

Searched refs:BN_FLG_SECURE (Results 1 – 9 of 9) sorted by relevance

/third_party/openssl/crypto/bn/
Dbn_ctx.c145 ret->flags = BN_FLG_SECURE; in BN_CTX_secure_new_ex()
331 if ((flag & BN_FLG_SECURE) != 0) in BN_POOL_get()
332 BN_set_flags(bn, BN_FLG_SECURE); in BN_POOL_get()
Dbn_lib.c204 if (BN_get_flags(a, BN_FLG_SECURE)) in bn_free_d()
260 ret->flags |= BN_FLG_SECURE; in BN_secure_new()
278 if (BN_get_flags(b, BN_FLG_SECURE)) in bn_expand_internal()
325 t = BN_get_flags(a, BN_FLG_SECURE) ? BN_secure_new() : BN_new(); in BN_dup()
361 | BN_FLG_SECURE \
/third_party/rust/crates/rust-openssl/openssl-sys/src/
Dbn.rs15 pub const BN_FLG_SECURE: c_int = 0x08; constant
/third_party/openssl/crypto/
Dparam_build.c222 if (BN_get_flags(bn, BN_FLG_SECURE) == BN_FLG_SECURE) in OSSL_PARAM_BLD_push_BN_pad()
/third_party/openssl/test/
Dparam_build_test.c260 || !TEST_int_eq(BN_get_flags(bn, BN_FLG_SECURE), BN_FLG_SECURE) in template_private_test()
/third_party/rust/crates/rust-openssl/openssl/src/
Dbn.rs890 let ret = ffi::BN_get_flags(self.as_ptr(), ffi::BN_FLG_SECURE); in is_secure()
891 ret == ffi::BN_FLG_SECURE in is_secure()
/third_party/openssl/ohos_lite/include/openssl/
Dbn.h62 # define BN_FLG_SECURE 0x08 macro
/third_party/openssl/include/openssl/
Dbn.h68 # define BN_FLG_SECURE 0x08 macro
/third_party/rust/crates/rust-openssl/openssl-sys/
DCHANGELOG.md174 * Added `BN_FLG_MALLOCED`, `BN_FLG_STATIC_DATA`, `BN_FLG_CONSTTIME`, and `BN_FLG_SECURE`.