#[repr(C)]
pub struct rsa_context {
Show 18 fields pub ver: c_int, pub len: size_t, pub N: mpi, pub E: mpi, pub D: mpi, pub P: mpi, pub Q: mpi, pub DP: mpi, pub DQ: mpi, pub QP: mpi, pub RN: mpi, pub RP: mpi, pub RQ: mpi, pub Vi: mpi, pub Vf: mpi, pub padding: c_int, pub hash_id: c_int, pub mutex: threading_mutex_t,
}

Fields

ver: c_intlen: size_tN: mpiE: mpiD: mpiP: mpiQ: mpiDP: mpiDQ: mpiQP: mpiRN: mpiRP: mpiRQ: mpiVi: mpiVf: mpipadding: c_inthash_id: c_intmutex: threading_mutex_t

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.