feat: add Argon2id key derivation with tests

This commit is contained in:
adlee-was-taken
2026-04-11 22:55:03 -04:00
parent a77a1c8b42
commit 1ae6abe049
2 changed files with 106 additions and 0 deletions

View File

@@ -1,2 +1,5 @@
pub mod error;
pub use error::{IdfotoError, Result};
pub mod crypto;
pub use crypto::{derive_master_key, KdfParams};