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

pub struct Dsa(_);

Methods

impl Dsa
[src]

Generate a DSA key pair.

Reads a DSA private key from PEM formatted data.

Read a private key from PEM supplying a password callback to be invoked if the private key is encrypted.

The callback will be passed the password buffer and should return the number of characters placed into the buffer.

Reads an DSA public key from PEM formatted data.

Methods from Deref<Target=DsaRef>

Writes an DSA private key as unencrypted PEM formatted data

Writes an DSA public key as PEM formatted data

Trait Implementations

impl OpenSslType for Dsa
[src]

The raw C type.

The type representing a reference to this type.

Constructs an instance of this type from its raw type.

impl Drop for Dsa
[src]

A method called when the value goes out of scope. Read more

impl Deref for Dsa
[src]

The resulting type after dereferencing

The method called to dereference a value

impl DerefMut for Dsa
[src]

The method called to mutably dereference a value

impl Debug for Dsa
[src]

Formats the value using the given formatter.