Initial support digest auth scheme

This commit is contained in:
Jorge Alejandro Jimenez Luna 2023-06-22 13:09:36 -04:00
parent 6767076a6b
commit 86429ee8eb
No known key found for this signature in database
GPG key ID: 58F10568E03E6001
6 changed files with 321 additions and 67 deletions

View file

@ -48,6 +48,12 @@ pub enum Error {
#[error("std::num::ParseIntError {0:?}")]
IntParseError(#[from] std::num::ParseIntError),
#[error("httparse::Error {0}")]
HttpError(#[from] httparse::Error),
#[error("digest_auth::Error {0}")]
DigestAuthError(#[from] digest_auth::Error),
}
impl From<&str> for Error {