#[non_exhaustive]
pub enum EcdhError {
WeakPk,
InvalidPk(EcPkInvalid),
InvalidSk(EcSkInvalid),
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
WeakPk
public key provided for the ECDH is a weak key
InvalidPk(EcPkInvalid)
InvalidSk(EcSkInvalid)
Trait Implementations§
source§impl Error for EcdhError
impl Error for EcdhError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<EcPkInvalid> for EcdhError
impl From<EcPkInvalid> for EcdhError
source§fn from(v: EcPkInvalid) -> Self
fn from(v: EcPkInvalid) -> Self
Converts to this type from the input type.
source§impl From<EcSkInvalid> for EcdhError
impl From<EcSkInvalid> for EcdhError
source§fn from(v: EcSkInvalid) -> Self
fn from(v: EcSkInvalid) -> Self
Converts to this type from the input type.