[][src]Struct ursa::signatures::Signer

pub struct Signer<'a, 'b, T: 'a + SignatureScheme> { /* fields omitted */ }

Methods

impl<'a, 'b, T: 'a + SignatureScheme> Signer<'a, 'b, T>[src]

pub fn new(scheme: &'a T, key: &'b PrivateKey) -> Self[src]

Constructs a new Signer

Arguments

  • scheme - a cryptographic signature scheme
  • private_key - private key

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

Signs the given message.

Arguments

  • message - the message bytes

Returns

  • signature - the signature bytes

pub fn get_public_key(&self) -> Result<PublicKey, CryptoError>[src]

Return the public key for this Signer instance.

Returns

  • public_key - the public key instance

Auto Trait Implementations

impl<'a, 'b, T> Send for Signer<'a, 'b, T> where
    T: Sync

impl<'a, 'b, T> Unpin for Signer<'a, 'b, T>

impl<'a, 'b, T> Sync for Signer<'a, 'b, T> where
    T: Sync

impl<'a, 'b, T> UnwindSafe for Signer<'a, 'b, T> where
    T: RefUnwindSafe

impl<'a, 'b, T> RefUnwindSafe for Signer<'a, 'b, T> where
    T: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self