reddb-io-server 1.0.1

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
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, is_encrypted_frame, key_from_env,
    parse_key as parse_encryption_key, PageEncryptionError, FRAME_MAGIC, FRAME_OVERHEAD,
    FRAME_VERSION,
};
pub use sha256::{sha256, Sha256};
pub use uuid::Uuid;