UNPKG

system-secured-storage

Version:

A Node.js project that allows users to store encrypted key-value data locally on their system. This project serves as an alternate storage solution to SQLite but with enhanced security features, leveraging AES encryption to ensure the confidentiality and

6 lines (5 loc) 116 B
export type SystemSecuredStorageOptions = { directory: string; encryptionKey: string; ivKey: string; };