vios_app 0.1.1

Small JSON vaults: Argon2id + AES-GCM, with optional AAD binding.
Documentation
1
2
3
4
5
6
7
8
9
// src/bin/naorix_watch.rs

use vios_core::naorix::agent_loop::watch_loop;

fn main() {
    let vault_dir = "vaults";
    let key = "ownYourImprint";
    watch_loop(vault_dir, key);
}