[][src]Struct openssl::dsa::DsaRef

pub struct DsaRef<T>(_, _);
[]

Reference to Dsa.

Methods

impl<T> DsaRef<T> where
    T: HasPublic
[src][]

pub fn public_key_to_pem(&self) -> Result<Vec<u8>, ErrorStack>[src][]

Serialies the public key into a PEM-encoded SubjectPublicKeyInfo structure.

The output will have a header of -----BEGIN PUBLIC KEY-----.

This corresponds to PEM_write_bio_DSA_PUBKEY.

pub fn public_key_to_der(&self) -> Result<Vec<u8>, ErrorStack>[src][]

Serializes the public key into a DER-encoded SubjectPublicKeyInfo structure.

This corresponds to i2d_DSA_PUBKEY.

pub fn pub_key(&self) -> &BigNumRef[src][]

Returns a reference to the public key component of self.

impl<T> DsaRef<T> where
    T: HasPrivate
[src][]

pub fn priv_key(&self) -> &BigNumRef[src][]

Returns a reference to the private key component of self.

impl<T> DsaRef<T> where
    T: HasParams
[src][]

pub fn size(&self) -> u32[src][]

Returns the maximum size of the signature output by self in bytes.

OpenSSL documentation at DSA_size

pub fn p(&self) -> &BigNumRef[src][]

Returns the DSA prime parameter of self.

pub fn q(&self) -> &BigNumRef[src][]

Returns the DSA sub-prime parameter of self.

pub fn g(&self) -> &BigNumRef[src][]

Returns the DSA base parameter of self.

Trait Implementations

impl<T> Sync for DsaRef<T>[src]

impl<T> AsRef<DsaRef<T>> for Dsa<T>[src][+]

impl<T> Send for DsaRef<T>[src]

impl<T> ToOwned for DsaRef<T>[src][+]

type Owned = Dsa<T>

fn clone_into(&self, target: &mut Self::Owned)[src][]

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

recently added

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

impl<T> Borrow<DsaRef<T>> for Dsa<T>[src][+]

impl<T> ForeignTypeRef for DsaRef<T>[src][+]

type CType = DSA

The raw C type.

unsafe fn from_ptr<'a>(ptr: *mut Self::CType) -> &'a Self[src][]

Constructs a shared instance of this type from its raw type.

unsafe fn from_ptr_mut<'a>(ptr: *mut Self::CType) -> &'a mut Self[src][]

Constructs a mutable reference of this type from its raw type.

fn as_ptr(&self) -> *mut Self::CType[src][]

Returns a raw pointer to the wrapped value.

Blanket Implementations

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

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

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

type Owned = T

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

type Error = !

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

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.

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