Skip to main content

CryptoKeys

Struct CryptoKeys 

Source
pub struct CryptoKeys { /* private fields */ }
Expand description

Signing (private) and verifying (public) key pair which can create and verify SignatureBytes.

Implementations§

Source§

impl CryptoKeys

Source

pub fn generate() -> Self

Generates and returns a new pair of keys.

Source

pub fn from_private(private_key: PrivateKeyBytes) -> Result<Self, CryptoError>

Tries to load a pair of keys from private_key.

Source

pub fn into_private(self) -> PrivateKeyBytes

Consumes these keys, returning only their private key.

Trait Implementations§

Source§

impl CryptoSigns for CryptoKeys

Source§

fn sign(&self, message: &[&[u8]]) -> Result<SignatureBytes, CryptoError>

Signs message with this signer’s private key, returning Ok(signature) iff signing was successful.
Source§

impl CryptoVerifies for CryptoKeys

Source§

fn verify( &self, message: &[&[u8]], signature: &SignatureBytes, ) -> Result<(), CryptoError>

Verifies signature against message, returning Ok iff the signature is valid and corresponds to this verifier’s public key.
Source§

impl HasCryptoPublicKey for CryptoKeys

Source§

fn public_key_bytes(&self) -> PublicKeyBytes

Returns this thing’s public key.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> TryAsFormat<T> for T

Source§

type Error = Infallible

Type of error returned when self doesn’t contain data of format D. Read more
Source§

fn try_as_format(&self) -> Result<&T, <T as TryAsFormat<T>>::Error>

Returns a D-formatted reference to the data.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.