[−][src]Struct openssl::dsa::Dsa
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 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]
impl Dsa<Private>
pub fn generate(bits: u32) -> Result<Dsa<Private>, ErrorStack>
[src]
pub fn generate(bits: u32) -> Result<Dsa<Private>, ErrorStack>
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
.
pub fn from_private_components(
p: BigNum,
q: BigNum,
g: BigNum,
priv_key: BigNum,
pub_key: BigNum
) -> Result<Dsa<Private>, ErrorStack>
[src]
pub fn from_private_components(
p: BigNum,
q: BigNum,
g: BigNum,
priv_key: BigNum,
pub_key: BigNum
) -> Result<Dsa<Private>, ErrorStack>
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
impl Dsa<Public>
[src]
impl Dsa<Public>
pub fn public_key_from_pem(pem: &[u8]) -> Result<Dsa<Public>, ErrorStack>
[src]
pub fn public_key_from_pem(pem: &[u8]) -> Result<Dsa<Public>, ErrorStack>
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
.
pub fn public_key_from_der(der: &[u8]) -> Result<Dsa<Public>, ErrorStack>
[src]
pub fn public_key_from_der(der: &[u8]) -> Result<Dsa<Public>, ErrorStack>
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>
[src]
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>>
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) -> &BigNumRef
Returns a reference to the public key component of self
.
pub fn size(&self) -> u32
[src]
pub fn size(&self) -> u32
Returns 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) -> &BigNumRef
Returns the DSA prime parameter of self
.
pub fn q(&self) -> &BigNumRef
[src]
pub fn q(&self) -> &BigNumRef
Returns the DSA sub-prime parameter of self
.
pub fn g(&self) -> &BigNumRef
[src]
pub fn g(&self) -> &BigNumRef
Returns the DSA base parameter of self
.
Trait Implementations
impl<T> Sync for Dsa<T>
[src]
impl<T> Sync for Dsa<T>
impl<T> AsRef<DsaRef<T>> for Dsa<T>
[src]
impl<T> AsRef<DsaRef<T>> for Dsa<T>
impl<T> Send for Dsa<T>
[src]
impl<T> Send for Dsa<T>
impl<T> Drop for Dsa<T>
[src]
impl<T> Drop for Dsa<T>
impl<T> Deref for Dsa<T>
[src]
impl<T> Deref for Dsa<T>
type Target = DsaRef<T>
The resulting type after dereferencing.
fn deref(&self) -> &DsaRef<T>
[src]
fn deref(&self) -> &DsaRef<T>
Dereferences the value.
impl<T> DerefMut for Dsa<T>
[src]
impl<T> DerefMut for Dsa<T>
impl<T> Debug for Dsa<T>
[src]
impl<T> Debug for Dsa<T>
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<T> Borrow<DsaRef<T>> for Dsa<T>
[src]
impl<T> Borrow<DsaRef<T>> for Dsa<T>
impl<T> ForeignType for Dsa<T>
[src]
impl<T> ForeignType for Dsa<T>
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> From for T
[src]
impl<T> From for 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,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably 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> 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