Struct sshkeys::DsaPublicKey[][src]

pub struct DsaPublicKey {
    pub p: Vec<u8>,
    pub q: Vec<u8>,
    pub g: Vec<u8>,
    pub y: Vec<u8>,
}

DSA public key. The format of DSA public keys is described in RFC 4253, section 6.6

Fields

p: Vec<u8>

Parameter p.

q: Vec<u8>

Parameter q.

g: Vec<u8>

Parameter g.

y: Vec<u8>

Parameter y.

Trait Implementations

impl Debug for DsaPublicKey[src]

impl PartialEq<DsaPublicKey> for DsaPublicKey[src]

impl StructuralPartialEq for DsaPublicKey[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.