Struct http_sign::RsaSha256[][src]

pub struct RsaSha256<Rand> { /* fields omitted */ }
👎 Deprecated

The “rsa-sha256” signature algorithm. Deprecated by the standard because it reveals which hash and digest algorithm is used.

Implementations

impl<Rand> RsaSha256<Rand>[src]

pub fn new(key_id: impl Into<String>, key: RsaKeyPair, random: Rand) -> Self[src]

Trait Implementations

impl<Rand> Debug for RsaSha256<Rand>[src]

impl<Rand: SecureRandom> SignatureAlgorithm for RsaSha256<Rand>[src]

Auto Trait Implementations

impl<Rand> RefUnwindSafe for RsaSha256<Rand> where
    Rand: RefUnwindSafe

impl<Rand> Send for RsaSha256<Rand> where
    Rand: Send

impl<Rand> Sync for RsaSha256<Rand> where
    Rand: Sync

impl<Rand> Unpin for RsaSha256<Rand> where
    Rand: Unpin

impl<Rand> UnwindSafe for RsaSha256<Rand> where
    Rand: UnwindSafe

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, 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.