feat(core): backup module — empty-vault round-trip

pack_backup / unpack_backup ship the magic header, format version,
Argon2id KDF, XChaCha20-Poly1305 AEAD, and zstd-compressed JSON
envelope. Empty-vault round-trip is the foundation; later tasks
add items, attachments, image, and git history.
This commit is contained in:
adlee-was-taken
2026-04-27 22:29:10 -04:00
parent 57dd186bab
commit 08086b9a9e
3 changed files with 375 additions and 0 deletions

View File

@@ -77,3 +77,6 @@ pub use vault::{
};
pub mod imgsecret;
pub mod backup;
pub use backup::{pack_backup, unpack_backup, BackupInput, BackupOutput, BackupItem, BackupAttachment};