pub struct KeyPairFromSeed32Generator {}Expand description
Keypair generator with seed
Implementations§
Source§impl KeyPairFromSeed32Generator
impl KeyPairFromSeed32Generator
Sourcepub fn generate(seed: Seed32) -> Ed25519KeyPair
pub fn generate(seed: Seed32) -> Ed25519KeyPair
Create a keypair based on a given seed.
The PublicKey will be able to verify messaged signed with
the PrivateKey.
Trait Implementations§
Source§impl Clone for KeyPairFromSeed32Generator
impl Clone for KeyPairFromSeed32Generator
Source§fn clone(&self) -> KeyPairFromSeed32Generator
fn clone(&self) -> KeyPairFromSeed32Generator
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 KeyPairFromSeed32Generator
impl Debug for KeyPairFromSeed32Generator
impl Copy for KeyPairFromSeed32Generator
Auto Trait Implementations§
impl Freeze for KeyPairFromSeed32Generator
impl RefUnwindSafe for KeyPairFromSeed32Generator
impl Send for KeyPairFromSeed32Generator
impl Sync for KeyPairFromSeed32Generator
impl Unpin for KeyPairFromSeed32Generator
impl UnwindSafe for KeyPairFromSeed32Generator
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