Skip to content

Releases: utelle/SQLite3MultipleCiphers

SQLite3 Multiple Ciphers 1.6.2 (based on SQLite 3.41.2)

23 Mar 12:07
v1.6.2
47080ad

Choose a tag to compare

Changes since previous release

  • Based on SQLite version 3.41.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.6.1 (based on SQLite 3.41.1)

14 Mar 14:09
v1.6.1
9814335

Choose a tag to compare

Changes since previous release

  • Based on SQLite version 3.41.1
  • Symbol MAX_PATHNAME (used on Unix-like platforms) has a fixed value of 512 in the original SQLite source code. This can now be configured at compile time to use a higher value (like 4096 - which is supported by most Linux variants) (see issue #104). Use symbol SQLITE3MC_MAX_PATHNAME to define a higher value.

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.6.0 (based on SQLite 3.41.0)

23 Feb 13:41
v1.6.0
a3c0fe4

Choose a tag to compare

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)

29 Dec 09:00
v1.5.5
2ec690b

Choose a tag to compare

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)

19 Nov 11:43
v1.5.4
e623ed2

Choose a tag to compare

Changes since previous release

  • Based on SQLite version 3.40.0
  • Fixed issues #91 and #92

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)

30 Sep 21:34
v1.5.3
b41657a

Choose a tag to compare

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)

08 Sep 17:56
v1.5.2
1be5782

Choose a tag to compare

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)

08 Sep 10:15
v1.5.1
4a1f4f8

Choose a tag to compare

Changes since previous release

⚠️ Important ⚠️

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)

06 Sep 21:45
v1.5.0
75a399b

Choose a tag to compare

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

⚠️ Important ⚠️

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)

26 Jul 10:47
v1.4.8
59beb5a

Choose a tag to compare

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.