Module signature_method

Source
Expand description

Signature methods (RFC 5849 section 3.4.).

The OAuth standard allows for servers to implement their own custom signature methods. So the module provides an abstraction over signature methods so that users can implement those custom methods by themselves.

Re-exports§

pub use self::hmac_sha1::HmacSha1;hmac-sha1
pub use self::hmac_sha1::HMAC_SHA1;hmac-sha1
pub use self::plaintext::Plaintext;
pub use self::plaintext::PLAINTEXT;alloc

Modules§

hmac_sha1hmac-sha1
The HMAC-SHA1 signature method (RFC 5849 section 3.4.2.).
plaintext
The PLAINTEXT signature method (RFC 5849 section 3.4.4.).

Traits§

Sign
Algorithms to sign a signature base string (RFC 5849 section 3.4.1.).
SignatureMethod
Types that represent a signature method.