-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Encryption - is this possible? #31
Comments
@pshah123 Have you managed to set it up? |
I recommend applying encryption at the application-level, storing data as blob/string and exposing indexes, as required. Encryption at lower-levels of the stack are a bonus and whilst they add layers around the onion, your application won't be dependent on them. |
Someone has done this https://github.com/wireapp/websql I've tried this and it worked. It would be nice if this was also implemented in absurd-sql. |
@imannms the repo link is expired. Can you give me some guidance about this problem, please? |
https://github.com/hoangqwe159/better-absurd-sql It is my solution for Encryption. Encryption for SharedArrayBuffer is not implemented. To make
|
Normal SQLite has extensions/Pager support for adding encryption to the entire DB file i.e. AES ciphers. I was wondering if this project had similar capabilities.
Looking at how the DB is read/parsed, this may be as easy as encrypting/decryption on read/write of chunks.
The text was updated successfully, but these errors were encountered: