Skip to main content

keybear_core/
lib.rs

1#![forbid(unsafe_code)]
2
3/// Primitives for encrypting/decrypting message bodies.
4pub mod crypto;
5/// Route URL paths.
6pub mod route;
7/// Serialization types that can be sent between clients and hosts.
8pub mod types;
9
10/// The required HTTP header containing the client ID.
11pub const CLIENT_ID_HEADER: &str = "keybear-client-id";