Struct openssl::dsa::Dsa [] [src]

pub struct Dsa<T>(_, _);

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 parameter
  • q: DSA sub-prime parameter
  • g: DSA base parameter

These values are used to calculate a pair of asymetrical 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)
}

Methods

impl Dsa<Private>
[src]

[src]

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 coresponds to the length of the prime p.

impl Dsa<Public>
[src]

[src]

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.

[src]

Decodes a DER-encoded SubjectPublicKeyInfo structure containing a DSA key.

This corresponds to d2i_DSA_PUBKEY.

Methods from Deref<Target = DsaRef<T>>

[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.

[src]

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

This corresponds to i2d_DSA_PUBKEY.

[src]

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

OpenSSL documentation at DSA_size

[src]

Returns the DSA prime parameter of self.

[src]

Returns the DSA sub-prime parameter of self.

[src]

Returns the DSA base parameter of self.

Trait Implementations

impl<T> ForeignType for Dsa<T>
[src]

The raw C type.

The type representing a reference to this type.

[src]

Constructs an instance of this type from its raw type.

[src]

Returns a raw pointer to the wrapped value.

impl<T> Drop for Dsa<T>
[src]

[src]

Executes the destructor for this type. Read more

impl<T> Deref for Dsa<T>
[src]

The resulting type after dereferencing.

[src]

Dereferences the value.

impl<T> DerefMut for Dsa<T>
[src]

[src]

Mutably dereferences the value.

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

[src]

Immutably borrows from an owned value. Read more

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

[src]

Performs the conversion.

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

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

impl<T> Debug for Dsa<T>
[src]

[src]

Formats the value using the given formatter. Read more