#basic-authentication #base64 #basic-auth #http #credentials #http-header

http-auth-basic

HTTP Basic Authentication Scheme (RFC 7617 and RFC 2617 compilant, base64-encoded credentials) for Rust applications

11 releases

0.3.3 Mar 30, 2022
0.3.2 Mar 30, 2022
0.3.1 Aug 15, 2021
0.2.2 Jul 14, 2021
0.1.0 Aug 30, 2020

#205 in Authentication

Download history 2177/week @ 2023-12-04 2110/week @ 2023-12-11 2618/week @ 2023-12-18 1491/week @ 2023-12-25 2148/week @ 2024-01-01 2581/week @ 2024-01-08 2256/week @ 2024-01-15 1594/week @ 2024-01-22 2042/week @ 2024-01-29 2550/week @ 2024-02-05 2600/week @ 2024-02-12 2773/week @ 2024-02-19 2723/week @ 2024-02-26 2764/week @ 2024-03-04 4245/week @ 2024-03-11 3042/week @ 2024-03-18

13,031 downloads per month
Used in 5 crates

MIT/Apache

28KB
188 lines

http-auth-basic

HTTP Basic Authentication Scheme (RFC 7617 and RFC 2617 compilant, base64-encoded credentials) for Rust applications

Crates.io Documentation Build Clippy Fmt Release Tests

Description

The "Basic" Hypertext Transfer Protocol (HTTP) authentication scheme, transmits credentials as user-id/password pairs, encoded using Base64.

The server will gather the credentials from the base64 encoded header value, and will validate them to authenticate the user in question.

This crate covers the credentials encoding and decoding. The Credentials struct provides two fields user_id and password, these are filled with they raw values.

Usage

Decoding a basic authorization value and creating a Credentials struct from it

use http_auth_basic::Credentials;

let auth_header_value = String::from("Basic dXNlcm5hbWU6cGFzc3dvcmQ=");
let credentials = Credentials::from_header(auth_header_value).unwrap();

assert_eq!(credentials.user_id, String::from("username"));
assert_eq!(credentials.password, String::from("password"));

Encoding Credentials into a basic authorization header value.

use http_auth_basic::Credentials;

let credentials = Credentials::new("username", "password");
let credentials = credentials.as_http_header();

assert_eq!(String::from("Basic dXNlcm5hbWU6cGFzc3dvcmQ="), credentials);

Release

git tag -a v0.1.0 -m "Release Message"
git push origin main --follow-tags

Contributing

Every contribution to this project is welcome! Feel free to open a pull request or an issue.

References

License

Distributed under the terms of both the MIT license and the Apache License (Version 2.0)

Dependencies

~240KB