Struct fog_crypto::identity::UnverifiedSignature[][src]

pub struct UnverifiedSignature { /* fields omitted */ }

A signature that has been read from a byte slice but hasn’t been verified yet.

Verification can be done by getting the appropriate version of hash into the verify(...) function.

Example

let data = b"I am some test data";
// ...

let unverified = UnverifiedSignature::try_from(&encoded[..])?;
let hash_version = unverified.hash_version();
let hash = Hash::with_version(&data[..], hash_version)?;
match unverified.verify(&hash) {
    Ok(verified) => {
        println!("Got valid signature, signed by {}", verified.signer());
    },
    Err(_) => {
        println!("Signature failed validation");
    }
}

Implementations

impl UnverifiedSignature[src]

pub fn hash_version(&self) -> u8[src]

Get the version of hash needed to complete the signature.

pub fn verify(self, hash: &Hash) -> Result<Signature, CryptoError>[src]

Verify the Signature, producing a verified Signature or failing.

Trait Implementations

impl Clone for UnverifiedSignature[src]

impl Debug for UnverifiedSignature[src]

impl Eq for UnverifiedSignature[src]

impl PartialEq<UnverifiedSignature> for UnverifiedSignature[src]

impl StructuralEq for UnverifiedSignature[src]

impl StructuralPartialEq for UnverifiedSignature[src]

impl TryFrom<&'_ [u8]> for UnverifiedSignature[src]

type Error = CryptoError

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,