Struct sshkeys::EcdsaPublicKey
[−]
[src]
pub struct EcdsaPublicKey {
pub curve: Curve,
pub key: Vec<u8>,
}ECDSA public key. The format of ECDSA public keys is described in RFC 5656, section 3.1.
Fields
curve: Curve
The curve being used.
key: Vec<u8>
The public key.
Trait Implementations
impl Debug for EcdsaPublicKey[src]
impl PartialEq for EcdsaPublicKey[src]
fn eq(&self, __arg_0: &EcdsaPublicKey) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &EcdsaPublicKey) -> bool[src]
This method tests for !=.