#basic-auth #rocket #web

rocket-basicauth

A high-level basic access authentication request guard for Rocket.rs

4 stable releases

3.0.0 Jan 3, 2024
2.1.1 Sep 7, 2021
1.0.0 Dec 2, 2020

#227 in Authentication

Download history 49/week @ 2024-01-01 99/week @ 2024-01-08 75/week @ 2024-01-15 166/week @ 2024-01-22 235/week @ 2024-01-29 364/week @ 2024-02-05 282/week @ 2024-02-12 240/week @ 2024-02-19 282/week @ 2024-02-26 188/week @ 2024-03-04 147/week @ 2024-03-11 225/week @ 2024-03-18 323/week @ 2024-03-25 207/week @ 2024-04-01 307/week @ 2024-04-08 349/week @ 2024-04-15

1,190 downloads per month
Used in 3 crates

MIT license

11KB
93 lines

rocket-basicauth

Tests Docs

A high-level basic access authentication request guard for Rocket.rs

Example

#[macro_use] extern crate rocket;

use rocket_basicauth::BasicAuth;

/// Hello route with `auth` request guard, containing a `name` and `password`
#[get("/hello/<age>")]
fn hello(auth: BasicAuth, age: u8) -> String {
    format!("Hello, {} year old named {}!", age, auth.username)
}

#[launch]
fn rocket() -> _ {
    rocket::build().mount("/", routes![hello])
}

Installation

Simply add the following to your Cargo.toml file:

[dependencies]
rocket-basicauth = "3"

Disabling logging

By default, this crate uses the log library to automatically add minimal trace-level logging, to disable this, instead write:

[dependencies]
rocket-basicauth = { version = "2", default-features = false }

Rocket 0.5-rc1 to 0.5-rc3

Version 2.0 supports the pre-release versions of Rocket 0.5 RC1 to RC3

[dependencies]
rocket-basicauth = "2"

Rocket 0.4

Support for Rocket 0.4 is decrepit in the eyes of this crate but may still be used by changing the version, to do this, instead write:

[dependencies]
rocket-basicauth = "1"

Security

Some essential security considerations to take into account are the following:

  • This crate has not been audited by any security professionals. If you are willing to do or have already done an audit on this crate, please create an issue as it would help out enormously! 😊
  • This crate purposefully does not limit the maximum length of http basic auth headers arriving so please ensure your webserver configurations are set properly.

Dependencies

~15–50MB
~821K SLoC