pub enum Algorithm {
EcdsaSecp256k1,
EcdsaRecoverableSecp256k1,
EcdsaSecp256r1,
Ed25519,
Sr25519,
}
Expand description
Signing algorithm.
Variants§
EcdsaSecp256k1
ECDSA with secp256k1.
EcdsaRecoverableSecp256k1
ECDSA with secp256k1 in Ethereum compatible format.
EcdsaSecp256r1
ECDSA with NIST P-256.
Ed25519
Ed25519.
Sr25519
Schnorrkel used by substrate/polkadot.
Implementations§
Trait Implementations§
impl Copy for Algorithm
impl Eq for Algorithm
impl StructuralPartialEq for Algorithm
Auto Trait Implementations§
impl Freeze for Algorithm
impl RefUnwindSafe for Algorithm
impl Send for Algorithm
impl Sync for Algorithm
impl Unpin for Algorithm
impl UnwindSafe for Algorithm
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