Searched refs:BN_FLG_SECURE (Results 1 – 9 of 9) sorted by relevance
/third_party/openssl/crypto/bn/ |
D | bn_ctx.c | 145 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()
|
D | bn_lib.c | 204 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/ |
D | bn.rs | 15 pub const BN_FLG_SECURE: c_int = 0x08; constant
|
/third_party/openssl/crypto/ |
D | param_build.c | 222 if (BN_get_flags(bn, BN_FLG_SECURE) == BN_FLG_SECURE) in OSSL_PARAM_BLD_push_BN_pad()
|
/third_party/openssl/test/ |
D | param_build_test.c | 260 || !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/ |
D | bn.rs | 890 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/ |
D | bn.h | 62 # define BN_FLG_SECURE 0x08 macro
|
/third_party/openssl/include/openssl/ |
D | bn.h | 68 # define BN_FLG_SECURE 0x08 macro
|
/third_party/rust/crates/rust-openssl/openssl-sys/ |
D | CHANGELOG.md | 174 * Added `BN_FLG_MALLOCED`, `BN_FLG_STATIC_DATA`, `BN_FLG_CONSTTIME`, and `BN_FLG_SECURE`.
|