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::identity::Identity;
pub use self::plaintext::Plaintext;

Modules

The HMAC-SHA1 signature method (RFC 5849 section 3.4.2.).
A pseudo signature method for debugging purpose.
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.