[−][src]Struct openssl::dsa::DsaRef
Reference to Dsa.
Methods
impl<T> DsaRef<T> where
T: HasPublic, [src]
impl<T> DsaRef<T> where
T: HasPublic, pub fn public_key_to_pem(&self) -> Result<Vec<u8>, ErrorStack>[src]
pub fn public_key_to_pem(&self) -> Result<Vec<u8>, ErrorStack>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]
pub fn public_key_to_der(&self) -> Result<Vec<u8>, ErrorStack>Serializes the public key into a DER-encoded SubjectPublicKeyInfo structure.
This corresponds to i2d_DSA_PUBKEY.
pub fn pub_key(&self) -> &BigNumRef[src]
pub fn pub_key(&self) -> &BigNumRefReturns a reference to the public key component of self.
impl<T> DsaRef<T> where
T: HasPrivate, [src]
impl<T> DsaRef<T> where
T: HasPrivate, impl<T> DsaRef<T> where
T: HasParams, [src]
impl<T> DsaRef<T> where
T: HasParams, pub fn size(&self) -> u32[src]
pub fn size(&self) -> u32Returns the maximum size of the signature output by self in bytes.
OpenSSL documentation at DSA_size
pub fn p(&self) -> &BigNumRef[src]
pub fn p(&self) -> &BigNumRefReturns the DSA prime parameter of self.
pub fn q(&self) -> &BigNumRef[src]
pub fn q(&self) -> &BigNumRefReturns the DSA sub-prime parameter of self.
pub fn g(&self) -> &BigNumRef[src]
pub fn g(&self) -> &BigNumRefReturns the DSA base parameter of self.
Trait Implementations
impl<T> Borrow<DsaRef<T>> for Dsa<T>[src]
impl<T> Borrow<DsaRef<T>> for Dsa<T>impl<T> AsRef<DsaRef<T>> for Dsa<T>[src]
impl<T> AsRef<DsaRef<T>> for Dsa<T>impl<T> ForeignTypeRef for DsaRef<T>[src]
impl<T> ForeignTypeRef for DsaRef<T>type CType = DSA
The raw C type.
ⓘImportant traits for &'a mut Runsafe fn from_ptr<'a>(ptr: *mut Self::CType) -> &'a Self[src]
unsafe fn from_ptr<'a>(ptr: *mut Self::CType) -> &'a SelfConstructs a shared instance of this type from its raw type.
ⓘImportant traits for &'a mut Runsafe fn from_ptr_mut<'a>(ptr: *mut Self::CType) -> &'a mut Self[src]
unsafe fn from_ptr_mut<'a>(ptr: *mut Self::CType) -> &'a mut SelfConstructs a mutable reference of this type from its raw type.
fn as_ptr(&self) -> *mut Self::CType[src]
fn as_ptr(&self) -> *mut Self::CTypeReturns a raw pointer to the wrapped value.
impl<T> Send for DsaRef<T>[src]
impl<T> Send for DsaRef<T>impl<T> Sync for DsaRef<T>[src]
impl<T> Sync for DsaRef<T>Blanket Implementations
impl<T> From for T[src]
impl<T> From for Timpl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>try_from)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, ⓘImportant traits for &'a mut Rfn borrow(&self) -> &T[src]
fn borrow(&self) -> &TImmutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>try_from)Performs the conversion.
impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, ⓘImportant traits for &'a mut Rfn borrow_mut(&mut self) -> &mut T[src]
fn borrow_mut(&mut self) -> &mut TMutably borrows from an owned value. Read more
impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src]
fn get_type_id(&self) -> TypeId🔬 This is a nightly-only experimental API. (get_type_id)
this method will likely be replaced by an associated static
Gets the TypeId of self. Read more