Struct openssl::dsa::Dsa [−][src]
pub struct Dsa<T>(_, _);
Expand description
Object representing DSA keys.
A DSA object contains the parameters p, q, and g. There is a private and public key. The values p, g, and q are:
p
: DSA prime parameterq
: DSA sub-prime parameterg
: DSA base parameter
These values are used to calculate a pair of asymmetrical keys used for signing.
OpenSSL documentation at DSA_new
Examples
use openssl::dsa::Dsa;
use openssl::error::ErrorStack;
use openssl::pkey::Private;
fn create_dsa() -> Result<Dsa<Private>, ErrorStack> {
let sign = Dsa::generate(2048)?;
Ok(sign)
}
Implementations
Generate a DSA key pair.
Calls DSA_generate_parameters_ex
to populate the p
, g
, and q
values.
These values are used to generate the key pair with DSA_generate_key
.
The bits
parameter corresponds to the length of the prime p
.
Create a DSA key pair with the given parameters
p
, q
and g
are the common parameters.
priv_key
is the private component of the key pair.
pub_key
is the public component of the key. Can be computed via g^(priv_key) mod p
Decodes a PEM-encoded SubjectPublicKeyInfo structure containing a DSA key.
The input should have a header of -----BEGIN PUBLIC KEY-----
.
This corresponds to PEM_read_bio_DSA_PUBKEY
.
Decodes a DER-encoded SubjectPublicKeyInfo structure containing a DSA key.
This corresponds to d2i_DSA_PUBKEY
.
pub fn from_public_components(
p: BigNum,
q: BigNum,
g: BigNum,
pub_key: BigNum
) -> Result<Dsa<Public>, ErrorStack>
pub fn from_public_components(
p: BigNum,
q: BigNum,
g: BigNum,
pub_key: BigNum
) -> Result<Dsa<Public>, ErrorStack>
Create a new DSA key with only public components.
p
, q
and g
are the common parameters.
pub_key
is the public component of the key.
Methods from Deref<Target = DsaRef<T>>
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
.
Serializes the public key into a DER-encoded SubjectPublicKeyInfo structure.
This corresponds to i2d_DSA_PUBKEY
.
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>
pub fn private_key_to_pem_passphrase(
&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
.
Returns the maximum size of the signature output by self
in bytes.
OpenSSL documentation at DSA_size
Trait Implementations
type Error = ErrorStack
type Error = ErrorStack
The type returned in the event of a conversion error.
type Error = ErrorStack
type Error = ErrorStack
The type returned in the event of a conversion error.
Auto Trait Implementations
impl<T> RefUnwindSafe for Dsa<T> where
T: RefUnwindSafe,
impl<T> UnwindSafe for Dsa<T> where
T: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more