mirror of
https://github.com/lbr77/SideImpactor.git
synced 2026-05-06 11:14:01 -04:00
refactor directory
This commit is contained in:
15
wasm/openssl/vendor/openssl-sys/src/bn.rs
vendored
Normal file
15
wasm/openssl/vendor/openssl-sys/src/bn.rs
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
use crate::libc::*;
|
||||
|
||||
#[cfg(target_pointer_width = "64")]
|
||||
pub type BN_ULONG = c_ulonglong;
|
||||
#[cfg(target_pointer_width = "32")]
|
||||
pub type BN_ULONG = c_uint;
|
||||
|
||||
#[cfg(ossl110)]
|
||||
pub const BN_FLG_MALLOCED: c_int = 0x01;
|
||||
#[cfg(ossl110)]
|
||||
pub const BN_FLG_STATIC_DATA: c_int = 0x02;
|
||||
#[cfg(ossl110)]
|
||||
pub const BN_FLG_CONSTTIME: c_int = 0x04;
|
||||
#[cfg(ossl110)]
|
||||
pub const BN_FLG_SECURE: c_int = 0x08;
|
||||
Reference in New Issue
Block a user