better-sqlite3-multiple-ciphers icon indicating copy to clipboard operation
better-sqlite3-multiple-ciphers copied to clipboard

better-sqlite3 with multiple-cipher encryption support 🔒

Results 4 better-sqlite3-multiple-ciphers issues
Sort by recently updated
recently updated
newest added

Following along the info stated in the readme file to a create a legacy SQLCipher encrypted DB that can be opened in SQLIte Browser. Running this code: ``` import Database...

documentation 📃
solved ✔

We've read at that PRAGMA `key` accepts a "64 character hex string". How might we write this with pure JavaScript? Is there a way to do `db.pragma('key', Buffer.from('something-with-quotes').toString('hex'))` and pad...

waiting-author-response ⏳
needs-debugging 🪲

I am using this library in an Electron environment, and the usage is as follows: ```javascript this.instance = new SQliteDatabase(path, { verboze: console.log }); if (this.secretKey) { this.instance.key(Buffer.from(this.secretKey)); } ```...

needs-debugging 🪲

Sorry @m4heshd but given there is not a Discussions section in the repo I thought it would be appropriate to open a gh issue for this. If for the future...

question ❓