Struct openssl::dsa::DsaRef [−][src]
Reference to Dsa
.
Implementations
impl<T> DsaRef<T> where
T: HasPublic,
[src][−]
T: HasPublic,
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][−]
T: HasPrivate,
pub fn private_key_to_pem(&self) -> Result<Vec<u8>, ErrorStack>
[src][−]
Serializes the private key to a PEM-encoded DSAPrivateKey structure.
The output will have a header of -----BEGIN DSA PRIVATE KEY-----
.
This corresponds to PEM_write_bio_DSAPrivateKey
.
pub fn private_key_to_pem_passphrase(
&self,
cipher: Cipher,
passphrase: &[u8]
) -> Result<Vec<u8>, ErrorStack>
[src][−]
&self,
cipher: Cipher,
passphrase: &[u8]
) -> Result<Vec<u8>, ErrorStack>
Serializes the private key to a PEM-encoded encrypted DSAPrivateKey structure.
The output will have a header of -----BEGIN DSA PRIVATE KEY-----
.
This corresponds to PEM_write_bio_DSAPrivateKey
.
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][−]
T: HasParams,
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> AsRef<DsaRef<T>> for Dsa<T>
[src][+]
impl<T> Borrow<DsaRef<T>> for Dsa<T>
[src][+]
impl<T> ForeignTypeRef for DsaRef<T>
[src][+]
impl<T> Send for DsaRef<T>
[src]
impl<T> Sync for DsaRef<T>
[src]
impl<T> ToOwned for DsaRef<T>
[src][+]
Auto Trait Implementations
impl<T> !RefUnwindSafe for DsaRef<T>
impl<T> Unpin for DsaRef<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for DsaRef<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,