dpop 0.1.1

An implementation of DPoP for rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! I define typed `Authorization` header with dpop credentials.
//!

use headers::Authorization;

use self::credentials::DPoPAuthorizationCredentials;

pub mod credentials;

/// Alias for type of [`Authorization`] header with dpop credentials.
pub type DPoPAuthorization = Authorization<DPoPAuthorizationCredentials>;