reddb-io-server 1.12.0

RedDB server-side engine: storage, runtime, replication, MCP, AI, and the gRPC/HTTP/RedWire/PG-wire dispatchers. Re-exported by the umbrella `reddb` crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod aes_gcm;
pub mod const_time;
pub mod hmac;
#[path = "os-random.rs"]
pub mod os_random;
pub mod page_encryption;
pub mod sha256;
pub mod uuid;

pub use aes_gcm::{aes256_gcm_decrypt, aes256_gcm_encrypt};
pub use const_time::constant_time_eq;
pub use hmac::hmac_sha256;
pub use page_encryption::{
    decrypt_page, encrypt_page, key_from_env, parse_key as parse_encryption_key, PageEnvelopeError,
    PAGE_ENVELOPE_OVERHEAD,
};
pub use sha256::{sha256, Sha256};
pub use uuid::Uuid;