http-signature-normalization-actix 0.3.0

An HTTP Signatures library that leaves the signing to you
Documentation
use actix_web::{
    client::ClientRequest, error::BlockingError, http::header::InvalidHeaderValue, web,
};
use std::{fmt::Display, future::Future, pin::Pin};

use crate::{
    digest::{DigestClient, DigestCreate, SignExt},
    Config, PrepareSignError, Sign,
};

impl SignExt for ClientRequest {
    fn authorization_signature_with_digest<F, E, K, D, V>(
        self,
        config: Config,
        key_id: K,
        mut digest: D,
        v: V,
        f: F,
    ) -> Pin<Box<dyn Future<Output = Result<DigestClient<V>, E>>>>
    where
        F: FnOnce(&str) -> Result<String, E> + Send + 'static,
        E: From<BlockingError<E>>
            + From<PrepareSignError>
            + From<InvalidHeaderValue>
            + std::fmt::Debug
            + Send
            + 'static,
        K: Display + 'static,
        D: DigestCreate + Send + 'static,
        V: AsRef<[u8]> + Send + 'static,
        Self: Sized,
    {
        Box::pin(async move {
            let (d, v) = web::block(move || {
                let d = digest.compute(v.as_ref());
                Ok((d, v)) as Result<(String, V), E>
            })
            .await?;

            let c = self
                .set_header("Digest", format!("{}={}", D::NAME, d))
                .authorization_signature(config, key_id, f)
                .await?;

            Ok(DigestClient::new(c, v))
        })
    }

    fn signature_with_digest<F, E, K, D, V>(
        self,
        config: Config,
        key_id: K,
        mut digest: D,
        v: V,
        f: F,
    ) -> Pin<Box<dyn Future<Output = Result<DigestClient<V>, E>>>>
    where
        F: FnOnce(&str) -> Result<String, E> + Send + 'static,
        E: From<BlockingError<E>>
            + From<PrepareSignError>
            + From<InvalidHeaderValue>
            + std::fmt::Debug
            + Send
            + 'static,
        K: Display + 'static,
        D: DigestCreate + Send + 'static,
        V: AsRef<[u8]> + Send + 'static,
        Self: Sized,
    {
        Box::pin(async move {
            let (d, v) = web::block(move || {
                let d = digest.compute(v.as_ref());
                Ok((d, v)) as Result<(String, V), E>
            })
            .await?;

            let c = self
                .set_header("Digest", format!("{}={}", D::NAME, d))
                .signature(config, key_id, f)
                .await?;

            Ok(DigestClient::new(c, v))
        })
    }
}