pub struct ESBlake2bK;Expand description
ECDSA using secp256k1 (K-256) and Blake2b.
Trait Implementations§
Source§impl Clone for ESBlake2bK
impl Clone for ESBlake2bK
Source§fn clone(&self) -> ESBlake2bK
fn clone(&self) -> ESBlake2bK
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ESBlake2bK
impl Debug for ESBlake2bK
Source§impl Default for ESBlake2bK
impl Default for ESBlake2bK
Source§fn default() -> ESBlake2bK
fn default() -> ESBlake2bK
Returns the “default value” for a type. Read more
Source§impl From<ESBlake2bK> for Algorithm
impl From<ESBlake2bK> for Algorithm
Source§fn from(_a: ESBlake2bK) -> Self
fn from(_a: ESBlake2bK) -> Self
Converts to this type from the input type.
Source§impl From<ESBlake2bK> for AlgorithmInstance
impl From<ESBlake2bK> for AlgorithmInstance
Source§fn from(_: ESBlake2bK) -> Self
fn from(_: ESBlake2bK) -> Self
Converts to this type from the input type.
Source§impl Hash for ESBlake2bK
impl Hash for ESBlake2bK
Source§impl PartialEq for ESBlake2bK
impl PartialEq for ESBlake2bK
Source§impl SignatureAlgorithmInstance for ESBlake2bK
impl SignatureAlgorithmInstance for ESBlake2bK
type Algorithm = ESBlake2bK
fn algorithm(&self) -> ESBlake2bK
Source§impl SignatureAlgorithmType for ESBlake2bK
impl SignatureAlgorithmType for ESBlake2bK
type Instance = ESBlake2bK
Source§impl TryFrom<Algorithm> for ESBlake2bK
impl TryFrom<Algorithm> for ESBlake2bK
Source§impl TryFrom<AlgorithmInstance> for ESBlake2bK
impl TryFrom<AlgorithmInstance> for ESBlake2bK
Source§type Error = UnsupportedAlgorithm
type Error = UnsupportedAlgorithm
The type returned in the event of a conversion error.
impl Copy for ESBlake2bK
impl Eq for ESBlake2bK
impl StructuralPartialEq for ESBlake2bK
Auto Trait Implementations§
impl Freeze for ESBlake2bK
impl RefUnwindSafe for ESBlake2bK
impl Send for ESBlake2bK
impl Sync for ESBlake2bK
impl Unpin for ESBlake2bK
impl UnwindSafe for ESBlake2bK
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more