dixscript 1.0.0

Config, code, and encryption in one file — a data interchange format with compile-time functions, AES-256/ChaCha20 built-in, and cross-platform FFI
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Key management — encryption key derivation, key file I/O.

mod argon2_kdf;
mod key_file_data;
mod key_file_format;
mod key_file_manager;

pub use argon2_kdf::Argon2KDF;
pub use key_file_data::*;
pub use key_file_format::{MdixKeyWriter, MdixKeyParser};
pub use key_file_manager::KeyFileManager;