[][src]Trait suzume::KeyFetcher

pub trait KeyFetcher {
    type Key: Key;
    fn fetch<H, P>(self, header: &H, payload: &P) -> Result<Self::Key, Error>
    where
        H: Header,
        P: Payload
; }

fetch decryption Key

Associated Types

type Key: Key

decryption key

Loading content...

Required methods

fn fetch<H, P>(self, header: &H, payload: &P) -> Result<Self::Key, Error> where
    H: Header,
    P: Payload

fetch decryption key

Loading content...

Implementors

impl<'a, JF> KeyFetcher for Auth0Fetcher<'a, JF> where
    JF: Auth0JwksFetcher
[src]

type Key = Key

Loading content...