Struct openssl::bn::BigNumContext [−][src]
pub struct BigNumContext(_);
Expand description
Temporary storage for BigNums on the secure heap
BigNum values are stored dynamically and therefore can be expensive
to allocate. BigNumContext and the OpenSSL BN_CTX
structure are used
internally when passing BigNum values between subroutines.
Implementations
Returns a new BigNumContext
.
See OpenSSL documentation at BN_CTX_new
.
Returns a new secure BigNumContext
.
See OpenSSL documentation at BN_CTX_secure_new
.
Trait Implementations
Performs the conversion.
Immutably borrows from an owned value. Read more
type Target = BigNumContextRef
type Target = BigNumContextRef
The resulting type after dereferencing.
Dereferences the value.
Mutably dereferences the value.
type Ref = BigNumContextRef
type Ref = BigNumContextRef
The type representing a reference to this type.
Constructs an instance of this type from its raw type.