http-sign 0.3.0

Implementation of the HTTP signature draft standard
#![forbid(unsafe_code)]
#![feature(generic_associated_types)]
#![feature(min_type_alias_impl_trait)]

mod algorithm;
pub mod request;
mod signature;

#[allow(deprecated)]
pub use algorithm::{
    SignatureAlgorithm,
    hs::Hs2019,
    rsa::RsaSha256,
    hmac::HmacSha256,
    ecdsa::EcdsaSha256,
};

pub use signature::{
    SignError,
    SignatureElement,
    SignatureScheme,
    sign,
};