SQLite3MultipleCiphers icon indicating copy to clipboard operation
SQLite3MultipleCiphers copied to clipboard

SQLite3 encryption extension with support for multiple ciphers

Results 9 SQLite3MultipleCiphers issues
Sort by recently updated
recently updated
newest added

Is it recommended to increase the compilation method of CMake

Compiling for wasm needed a conditional define in order to properly define the entropy function. I created a PR, its a small change, I'm not sure __WASM__ is the right...

According to [this post on the SQLite forum](https://sqlite.org/forum/forumpost/db235b3070) the _User Authentication Extension_ has been formally deprecated (see also [SQLite Check-In message](https://www.sqlite.org/src/info/249048b0cbc37058) or deprecation notice in file [user-auth.txt](https://www.sqlite.org/src/file?name=ext/userauth/user-auth.txt&ci=trunk)). Therefore I intend...

feedback wanted

The `configure/make` build script will output file `sqlite3mc.pc`, but not CMake build script yet

It would be nice to have a conan package available for this project. I've created a conan2 recipe, let me know if you would like to review it.

Hi. I'm trying to develop my own encrypting VFS (n the context of developing a [Go driver](https://github.com/ncruces/go-sqlite3/)). I was looking into your code for inspiration, and have a few comments/concerns....

``` sqlite3mc.c:280110:7: error: 'syscall' is deprecated: first deprecated in iOS 10.0 - syscall(2) is unsupported; please switch to a supported interface. For SYS_kdebug_trace use kdebug_signpost(). [-Werror,-Wdeprecated-declarations] if (syscall(SYS_getentropy, buf, n)...

I get build error I can workaournd it by disable src\sqlite3mc_config.h #define HAVE_CIPHER_AEGIS 1 but I pass at the arm64-windows I try to change something, but the the arm64ec is...