Struct openssl::dh::Dh [−][src]
pub struct Dh<T>(_, _);
Methods
impl Dh<Params>
[src]
impl Dh<Params>
pub fn from_params(
p: BigNum,
g: BigNum,
q: BigNum
) -> Result<Dh<Params>, ErrorStack>
[src]
pub fn from_params(
p: BigNum,
g: BigNum,
q: BigNum
) -> Result<Dh<Params>, ErrorStack>
pub fn params_from_pem(pem: &[u8]) -> Result<Dh<Params>, ErrorStack>
[src]
pub fn params_from_pem(pem: &[u8]) -> Result<Dh<Params>, ErrorStack>
Deserializes a PEM-encoded PKCS#3 DHpararameters structure.
The input should have a header of -----BEGIN DH PARAMETERS-----
.
This corresponds to PEM_read_bio_DHparams
.
pub fn params_from_der(der: &[u8]) -> Result<Dh<Params>, ErrorStack>
[src]
pub fn params_from_der(der: &[u8]) -> Result<Dh<Params>, ErrorStack>
Deserializes a DER-encoded PKCS#3 DHparameters structure.
This corresponds to d2i_DHparams
.
pub fn get_1024_160() -> Result<Dh<Params>, ErrorStack>
[src]
pub fn get_1024_160() -> Result<Dh<Params>, ErrorStack>
Requires OpenSSL 1.0.2 or newer.
pub fn get_2048_224() -> Result<Dh<Params>, ErrorStack>
[src]
pub fn get_2048_224() -> Result<Dh<Params>, ErrorStack>
Requires OpenSSL 1.0.2 or newer.
pub fn get_2048_256() -> Result<Dh<Params>, ErrorStack>
[src]
pub fn get_2048_256() -> Result<Dh<Params>, ErrorStack>
Requires OpenSSL 1.0.2 or newer.
Methods from Deref<Target = DhRef<T>>
pub fn params_to_pem(&self) -> Result<Vec<u8>, ErrorStack>
[src]
pub fn params_to_pem(&self) -> Result<Vec<u8>, ErrorStack>
Serializes the parameters into a PEM-encoded PKCS#3 DHparameter structure.
The output will have a header of -----BEGIN DH PARAMETERS-----
.
This corresponds to PEM_write_bio_DHparams
.
pub fn params_to_der(&self) -> Result<Vec<u8>, ErrorStack>
[src]
pub fn params_to_der(&self) -> Result<Vec<u8>, ErrorStack>
Serializes the parameters into a DER-encoded PKCS#3 DHparameter structure.
This corresponds to i2d_DHparams
.
Trait Implementations
impl<T> ForeignType for Dh<T>
[src]
impl<T> ForeignType for Dh<T>
type CType = DH
The raw C type.
type Ref = DhRef<T>
The type representing a reference to this type.
unsafe fn from_ptr(ptr: *mut DH) -> Dh<T>
[src]
unsafe fn from_ptr(ptr: *mut DH) -> Dh<T>
Constructs an instance of this type from its raw type.
fn as_ptr(&self) -> *mut DH
[src]
fn as_ptr(&self) -> *mut DH
Returns a raw pointer to the wrapped value.
impl<T> Drop for Dh<T>
[src]
impl<T> Drop for Dh<T>
impl<T> Deref for Dh<T>
[src]
impl<T> Deref for Dh<T>
type Target = DhRef<T>
The resulting type after dereferencing.
fn deref(&self) -> &DhRef<T>
[src]
fn deref(&self) -> &DhRef<T>
Dereferences the value.
impl<T> DerefMut for Dh<T>
[src]
impl<T> DerefMut for Dh<T>
impl<T> Borrow<DhRef<T>> for Dh<T>
[src]
impl<T> Borrow<DhRef<T>> for Dh<T>
impl<T> AsRef<DhRef<T>> for Dh<T>
[src]
impl<T> AsRef<DhRef<T>> for Dh<T>
impl<T> Send for Dh<T>
[src]
impl<T> Send for Dh<T>
impl<T> Sync for Dh<T>
[src]
impl<T> Sync for Dh<T>