io_http/rfc7617/mod.rs
1//! HTTP Basic authentication scheme ([RFC 7617]).
2//!
3//! Base64 `username:password` pair carried in the `Authorization` request
4//! header (`Basic <base64(user:pass)>`). Used by CardDAV/CalDAV servers that do
5//! not support OAuth. Credentials are only encoded, not encrypted: the scheme
6//! must be used over TLS in production.
7//!
8//! [RFC 7617]: https://www.rfc-editor.org/rfc/rfc7617
9
10pub mod basic;