Releases: utelle/SQLite3MultipleCiphers
SQLite3 Multiple Ciphers 1.6.0 (based on SQLite 3.41.0)
Changes since previous release
- Based on SQLite version 3.41.0
- Added automatic VFS shim instantiation (see issue #104)
- Added CMake build support (thanks to @lwttai and @jammerxd)
To enable encryption support for a non-default VFS it is now enough to specify the name of the requested real VFS with the prefix "multipleciphers-", either via the URI parameter vfs or via the 4th parameter of the SQLite API function sqlite3_open_v2()
.
Example:
// via URI filename
file:dbfile.db3?vfs=multipleciphers-win32-longpath
/* via API function */
sqlite3* pDb;
int rc = sqlite3_open_v2("dbfile.db3", &pDb, SQLITE_OPEN_READWRITE, "multipleciphers-win32-longpath");
Notes
- SQLite3 binaries for Windows (SQLite3 shell and DLLs) can be found as separate downloads with resp. without enabled ICU support in variants for 32-bit and 64-bit Windows. The SQLite3 shell applications support the SQLite Archive feature.
- Additionally, a source code amalgamation is provided. That is, a single C source file and a single C header file.
SQLite3 Multiple Ciphers 1.5.5 (based on SQLite 3.40.1)
Changes since previous release
- Based on SQLite version 3.40.1
Notes
- SQLite3 binaries for Windows (SQLite3 shell and DLLs) can be found as separate downloads with resp. without enabled ICU support in variants for 32-bit and 64-bit Windows. The SQLite3 shell applications support the SQLite Archive feature.
- Additionally, a source code amalgamation is provided. That is, a single C source file and a single C header file.
SQLite3 Multiple Ciphers 1.5.4 (based on SQLite 3.40.0)
Changes since previous release
Notes
- SQLite3 binaries for Windows (SQLite3 shell and DLLs) can be found as separate downloads with resp. without enabled ICU support in variants for 32-bit and 64-bit Windows. The SQLite3 shell applications support the SQLite Archive feature.
- Additionally, a source code amalgamation is provided. That is, a single C source file and a single C header file.
SQLite3 Multiple Ciphers 1.5.3 (based on SQLite 3.39.4)
Changes since previous release
- Based on SQLite version 3.39.4
Notes
- SQLite3 binaries for Windows (SQLite3 shell and DLLs) can be found as separate downloads with resp. without enabled ICU support in variants for 32-bit and 64-bit Windows. The SQLite3 shell applications support the SQLite Archive feature.
- Additionally, a source code amalgamation is provided. That is, a single C source file and a single C header file.
SQLite3 Multiple Ciphers 1.5.2 (based on SQLite 3.39.3)
Changes since previous release
- Based on SQLite version 3.39.3
- Fix retrieval of config parameter table (#90)
Notes
- SQLite3 binaries for Windows (SQLite3 shell and DLLs) can be found as separate downloads with resp. without enabled ICU support in variants for 32-bit and 64-bit Windows. The SQLite3 shell applications support the SQLite Archive feature.
- Additionally, a source code amalgamation is provided. That is, a single C source file and a single C header file.
SQLite3 Multiple Ciphers 1.5.1 (based on SQLite 3.39.3)
Changes since previous release
- Based on SQLite version 3.39.3
- Fix a bug in shutdown code that resulted in a crash on calling
sqlite3_shutdown
Please update to release SQLite3 Multiple Ciphers version 1.5.2 (or higher). Versions 1.5.0 and 1.5.1 have a bug in the code for retrieval of the cipher configuration parameter table, leading to a crash on activating encryption for a database connection (see issue #90). Only builds that omit some of the builtin cipher schemes are affected.
Notes
- SQLite3 binaries for Windows (SQLite3 shell and DLLs) can be found as separate downloads with resp. without enabled ICU support in variants for 32-bit and 64-bit Windows. The SQLite3 shell applications support the SQLite Archive feature.
- Additionally, a source code amalgamation is provided. That is, a single C source file and a single C header file.
SQLite3 Multiple Ciphers 1.5.0 (based on SQLite 3.39.3)
Changes since previous release
- Based on SQLite version 3.39.3
- Add option to register cipher schemes dynamically
- Eliminate a few compile time warnings
- Add WebAssembly target support (#88, #89)
- Improve error messages from
sqlite3_rekey
Please update to release SQLite3 Multiple Ciphers version 1.5.1 (or higher). Version 1.5.0 contains a bug in the shutdown code that leads to a crash on invoking sqlite3_shutdown
.
Notes
- SQLite3 binaries for Windows (SQLite3 shell and DLLs) can be found as separate downloads with resp. without enabled ICU support in variants for 32-bit and 64-bit Windows. The SQLite3 shell applications support the SQLite Archive feature.
- Additionally, a source code amalgamation is provided. That is, a single C source file and a single C header file.
SQLite3 Multiple Ciphers 1.4.8 (based on SQLite 3.39.2)
Changes since previous release
- Based on SQLite version 3.39.2
- Fixed issue #85 (
PRAGMA rekey
could cause a crash)
Notes
- SQLite3 binaries for Windows (SQLite3 shell and DLLs) can be found as separate downloads with resp. without enabled ICU support in variants for 32-bit and 64-bit Windows. The SQLite3 shell applications support the SQLite Archive feature.
- Additionally, a source code amalgamation is provided. That is, a single C source file and a single C header file.
SQLite3 Multiple Ciphers 1.4.7 (based on SQLite 3.39.2)
Changes since previous release
- Based on SQLite version 3.39.2
Notes
- SQLite3 binaries for Windows (SQLite3 shell and DLLs) can be found as separate downloads with resp. without enabled ICU support in variants for 32-bit and 64-bit Windows. The SQLite3 shell applications support the SQLite Archive feature.
- Additionally, a source code amalgamation is provided. That is, a single C source file and a single C header file.
SQLite3 Multiple Ciphers 1.4.6 (based on SQLite 3.39.1)
Changes since previous release
- Based on SQLite version 3.39.1
Notes
- SQLite3 binaries for Windows (SQLite3 shell and DLLs) can be found as separate downloads with resp. without enabled ICU support in variants for 32-bit and 64-bit Windows. The SQLite3 shell applications support the SQLite Archive feature.
- Additionally, a source code amalgamation is provided. That is, a single C source file and a single C header file.