[][src]Struct http_sig::RsaSha256Sign

pub struct RsaSha256Sign(_);

Implementation of the signing half of the ' rsa-sha256 ' HTTP signature scheme.

Methods

impl RsaSha256Sign[src]

pub fn new_pkcs8(private_key: &[u8]) -> Result<Self, Box<dyn Error>>[src]

Create a new instance of the signature scheme using the provided private key.

pub fn new_der(private_key: &[u8]) -> Result<Self, Box<dyn Error>>[src]

Create a new instance of the signature scheme using the provided private key.

pub fn new_pem(private_key: &[u8]) -> Result<Self, Box<dyn Error>>[src]

Create a new instance of the signature scheme using the provided private key.

Trait Implementations

impl Debug for RsaSha256Sign[src]

impl HttpSignatureSign for RsaSha256Sign[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, 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.