[][src]Struct openpgp_keylist::SignedKeylist

pub struct SignedKeylist {
    pub keylist: String,
    pub sig: String,
}

Fields

keylist: Stringsig: String

Implementations

impl SignedKeylist[src]

pub fn verify(
    &self,
    verify_sig: Box<dyn FnOnce(&[u8], &str) -> Result<bool>>
) -> Result<Keylist>
[src]

If the SignedKeylist validates (according to verify_sig), this function returns a Keylist (which gives access to the individual fields of the Keylist).

verify_sig takes a message and a detached signature and checks if the signature is valid (the certificate that is used to validate has to be embedded in the Fn - no key store is used for this test)

pub fn from_url(url: String) -> Result<Self>[src]

Retrieve a Keylist from the provided url. This implicitly also loads the signature_uri from within that Keylist.

The resulting SignedKeylist needs to be verified as a next step, before its data can be used.

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> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<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.