Struct boring_sys::rsa_st[][src]

#[repr(C)]pub struct rsa_st {
    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: c_uint,
    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_METHODn: *mut BIGNUMe: *mut BIGNUMd: *mut BIGNUMp: *mut BIGNUMq: *mut BIGNUMdmp1: *mut BIGNUMdmq1: *mut BIGNUMiqmp: *mut BIGNUMex_data: CRYPTO_EX_DATAreferences: CRYPTO_refcount_tflags: c_intlock: CRYPTO_MUTEXmont_n: *mut BN_MONT_CTXmont_p: *mut BN_MONT_CTXmont_q: *mut BN_MONT_CTXd_fixed: *mut BIGNUMdmp1_fixed: *mut BIGNUMdmq1_fixed: *mut BIGNUMinv_small_mod_large_mont: *mut BIGNUMnum_blindings: c_uintblindings: *mut *mut BN_BLINDINGblindings_inuse: *mut c_ucharblinding_fork_generation: u64_bitfield_align_1: [u8; 0]_bitfield_1: __BindgenBitfieldUnit<[u8; 1]>__bindgen_padding_0: [u8; 7]

Implementations

impl rsa_st[src]

pub fn private_key_frozen(&self) -> c_uint[src]

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

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

Trait Implementations

impl Clone for rsa_st[src]

impl Copy for rsa_st[src]

impl Default for rsa_st[src]

Auto Trait Implementations

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.