Struct boring_sys::rsa_st

source ·
#[repr(C)]
pub struct rsa_st {
Show 27 fields pub meth: *mut RSA_METHOD, pub n: *mut BIGNUM, pub e: *mut BIGNUM, pub d: *mut BIGNUM, pub p: *mut BIGNUM, pub q: *mut BIGNUM, pub dmp1: *mut BIGNUM, pub dmq1: *mut BIGNUM, pub iqmp: *mut BIGNUM, pub ex_data: CRYPTO_EX_DATA, pub references: CRYPTO_refcount_t, pub flags: c_int, pub lock: CRYPTO_MUTEX, pub mont_n: *mut BN_MONT_CTX, pub mont_p: *mut BN_MONT_CTX, pub mont_q: *mut BN_MONT_CTX, pub d_fixed: *mut BIGNUM, pub dmp1_fixed: *mut BIGNUM, pub dmq1_fixed: *mut BIGNUM, pub inv_small_mod_large_mont: *mut BIGNUM, pub num_blindings: usize, pub blindings: *mut *mut BN_BLINDING, pub blindings_inuse: *mut c_uchar, pub blinding_fork_generation: u64, pub _bitfield_align_1: [u8; 0], pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1]>, pub __bindgen_padding_0: [u8; 7],
}

Fields§

§meth: *mut RSA_METHOD§n: *mut BIGNUM§e: *mut BIGNUM§d: *mut BIGNUM§p: *mut BIGNUM§q: *mut BIGNUM§dmp1: *mut BIGNUM§dmq1: *mut BIGNUM§iqmp: *mut BIGNUM§ex_data: CRYPTO_EX_DATA§references: CRYPTO_refcount_t§flags: c_int§lock: CRYPTO_MUTEX§mont_n: *mut BN_MONT_CTX§mont_p: *mut BN_MONT_CTX§mont_q: *mut BN_MONT_CTX§d_fixed: *mut BIGNUM§dmp1_fixed: *mut BIGNUM§dmq1_fixed: *mut BIGNUM§inv_small_mod_large_mont: *mut BIGNUM§num_blindings: usize§blindings: *mut *mut BN_BLINDING§blindings_inuse: *mut c_uchar§blinding_fork_generation: u64§_bitfield_align_1: [u8; 0]§_bitfield_1: __BindgenBitfieldUnit<[u8; 1]>§__bindgen_padding_0: [u8; 7]

Implementations§

source§

impl rsa_st

source

pub fn private_key_frozen(&self) -> c_uint

source

pub fn set_private_key_frozen(&mut self, val: c_uint)

source

pub fn new_bitfield_1( private_key_frozen: c_uint ) -> __BindgenBitfieldUnit<[u8; 1]>

Trait Implementations§

source§

impl Clone for rsa_st

source§

fn clone(&self) -> rsa_st

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Default for rsa_st

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Copy for rsa_st

Auto Trait Implementations§

§

impl Freeze for rsa_st

§

impl RefUnwindSafe for rsa_st

§

impl !Send for rsa_st

§

impl !Sync for rsa_st

§

impl Unpin for rsa_st

§

impl UnwindSafe for rsa_st

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.