mirror of
https://github.com/luxfi/fhe.git
synced 2026-07-26 23:16:08 +00:00
Replace flat-file key storage (secret.key, public.key, bootstrap.key) with encrypted ZapDB (ChaCha20-Poly1305). All FHE key material is now stored in a single encrypted database at <dataDir>/zapdb/. New pkg/store package wraps luxfi/database/encdb for: - Secret/public/bootstrap key storage (encrypted at rest) - Ciphertext cache by content hash - Metadata storage New --password flag (or FHED_PASSWORD env) for ZapDB encryption. Both standard and threshold modes use ZapDB.