Struct minisign::SignatureBox[][src]

pub struct SignatureBox { /* fields omitted */ }

A signature, as well as the metadata required to verify it.

Implementations

impl SignatureBox[src]

pub fn is_prehashed(&self) -> bool[src]

Returns true if the signed data was pre-hashed.

pub fn untrusted_comment(&self) -> Result<String>[src]

The untrusted comment present in the signature.

pub fn trusted_comment(&self) -> Result<String>[src]

The trusted comment present in the signature.

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

The key identifier used to create the signature.

pub fn from_string(s: &str) -> Result<SignatureBox>[src]

Create a new SignatureBox from a string.

pub fn to_string(&self) -> String[src]

Return a SignatureBox for a string, for storage.

pub fn into_string(self) -> String[src]

Convert a SignatureBox to a string, for storage.

pub fn to_bytes(&self) -> Vec<u8>[src]

Return a byte representation of the signature, for storage.

pub fn from_file<P>(sig_path: P) -> Result<SignatureBox> where
    P: AsRef<Path>, 
[src]

Load a SignatureBox from a file.

Trait Implementations

impl Clone for SignatureBox[src]

impl Into<SignatureBones> for SignatureBox[src]

impl Into<SignatureBox> for SignatureBones[src]

impl Into<String> for SignatureBox[src]

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.