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;
pub use self::hmac_sha1::HMAC_SHA1;
pub use self::plaintext::Plaintext;
pub use self::plaintext::PLAINTEXT;

Modules

hmac_sha1hmac-sha1

The HMAC-SHA1 signature method (RFC 5849 section 3.4.2.).

The PLAINTEXT signature method (RFC 5849 section 3.4.4.).

Traits

Algorithms to sign a signature base string (RFC 5849 section 3.4.1.).

Types that represent a signature method.