Struct boring_sys::dsa_st[][src]

#[repr(C)]pub struct dsa_st {
    pub version: c_long,
    pub p: *mut BIGNUM,
    pub q: *mut BIGNUM,
    pub g: *mut BIGNUM,
    pub pub_key: *mut BIGNUM,
    pub priv_key: *mut BIGNUM,
    pub flags: c_int,
    pub method_mont_lock: CRYPTO_MUTEX,
    pub method_mont_p: *mut BN_MONT_CTX,
    pub method_mont_q: *mut BN_MONT_CTX,
    pub references: CRYPTO_refcount_t,
    pub ex_data: CRYPTO_EX_DATA,
}

Fields

version: c_longp: *mut BIGNUMq: *mut BIGNUMg: *mut BIGNUMpub_key: *mut BIGNUMpriv_key: *mut BIGNUMflags: c_intmethod_mont_lock: CRYPTO_MUTEXmethod_mont_p: *mut BN_MONT_CTXmethod_mont_q: *mut BN_MONT_CTXreferences: CRYPTO_refcount_tex_data: CRYPTO_EX_DATA

Trait Implementations

impl Clone for dsa_st[src]

impl Copy for dsa_st[src]

impl Default for dsa_st[src]

Auto Trait Implementations

impl RefUnwindSafe for dsa_st

impl !Send for dsa_st

impl !Sync for dsa_st

impl Unpin for dsa_st

impl UnwindSafe for dsa_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.