SQLCipher and Node compatibility

Hi,

I can create/open/update an encrypted SQLite DB with SQLCipher and Datum.

I can do the same with Node’s sqlite-crypto and other JS modules.

What I can’t do is get compatibility between SQLCipher and sqlite-crypto.

Both are set to aes-256-cbc.

I’ve read somewhere about character padding …

Thanks

Hello @txm sqlite-crypto does not use SQLCipher. It appears to fully encrypt and decrypt the database file in its entirety, which is completely different from the way SQLCipher works. Therefore, the two are not compatible.

1 Like