Skip to content

Commit 17abb48

Browse files
committed
Prepare release of version 2.1.0
- Based on SQLite version 3.49.1 - Update libaegis sources to version 0.4.0
1 parent e906fa2 commit 17abb48

File tree

6 files changed

+34
-10
lines changed

6 files changed

+34
-10
lines changed

CHANGELOG.md

+20-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.1.0] - 2025-03-01
11+
12+
### Changed
13+
14+
- Remove use of `SQLITE_EXTRA_INIT` and `SQLITE_EXTRA_SHUTDOWN`. Application can now use these precompiler symbols for their own purposes.
15+
- Split function `sqlite3mc_initialize()` into 2 parts:
16+
1) initialization of cipher schemes,
17+
2) loading builtin extensions automatically on opening a database
18+
- Disable cipher scheme AEGIS for MSVC 2015 and below - workaround for issue [#195](../../issues/195))
19+
20+
### Fixed
21+
22+
- Fixed issue [#194](../../issues/194)) - race condition when registering VFS
23+
1024
## [2.0.4] - 2025-02-18
1125

1226
### Changed
@@ -19,6 +33,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1933

2034
- Based on SQLite version 3.49.0
2135

36+
### Fixed
37+
38+
- Fixed issue [#190](../../issues/190)) - build with clang compiler fails
39+
2240
## [2.0.2] - 2025-01-15
2341

2442
### Changed
@@ -590,7 +608,8 @@ The following ciphers are supported:
590608
- AES 256 Bit CBC - SHA1/SHA256/SHA512 HMAC ([SQLCipher](https://www.zetetic.net/sqlcipher/), database versions 1, 2, 3, and 4)
591609
- RC4 - No HMAC ([System.Data.SQLite](http://system.data.sqlite.org))
592610

593-
[Unreleased]: ../../compare/v2.0.4...HEAD
611+
[Unreleased]: ../../compare/v2.1.0...HEAD
612+
[2.1.0]: ../../compare/v2.0.4...v2.1.0
594613
[2.0.4]: ../../compare/v2.0.3...v2.0.4
595614
[2.0.3]: ../../compare/v2.0.2...v2.0.3
596615
[2.0.2]: ../../compare/v2.0.1...v2.0.2

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dnl Copyright (C) 2019-2025 Ulrich Telle <[email protected]>
44
dnl
55
dnl This file is covered by the same licence as the entire SQLite3 Multiple Ciphers package.
66

7-
AC_INIT([sqlite3mc], [2.0.4], [[email protected]])
7+
AC_INIT([sqlite3mc], [2.1.0], [[email protected]])
88

99
dnl This is the version tested with, might work with earlier ones.
1010
AC_PREREQ([2.69])

readme.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,11 @@ The code was mainly developed under Windows, but was tested under Linux as well.
1010

1111
## Version information
1212

13-
* 2.0.4 - *February 2025*
13+
* 2.1.0 - *March 2025*
1414
- Based on SQLite version 3.49.1
15+
- Remove use of `SQLITE_EXTRA_INIT` and `SQLITE_EXTRA_SHUTDOWN`
16+
- Disable cipher scheme AEGIS for MSVC 2015 and below - workaround for issue #195
17+
- Fixed issue #194 - race condition when registering VFS
1518

1619
For further version information please consult the [CHANGELOG](CHANGELOG.md).
1720

src/aegis/aegis128x2/aegis128x2_common.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,8 @@ AEGIS_mac_nr(uint8_t *mac, size_t maclen, uint64_t adlen, AEGIS_AES_BLOCK_T*stat
216216
tmp = AEGIS_AES_BLOCK_XOR(tmp, AEGIS_AES_BLOCK_XOR(state[1], state[0]));
217217
AEGIS_AES_BLOCK_STORE(t, tmp);
218218
for (i = 0; i < d / 2; i++) {
219-
memcpy(r, t + i * 32, 32);
219+
memcpy(r, t + i * 32, 16);
220+
memcpy(r + AEGIS_RATE / 2, t + i * 32 + 16, 16);
220221
AEGIS_absorb(r, state);
221222
}
222223
tmp = AEGIS_AES_BLOCK_LOAD_64x2(maclen << 3, d);
@@ -240,7 +241,7 @@ AEGIS_mac_nr(uint8_t *mac, size_t maclen, uint64_t adlen, AEGIS_AES_BLOCK_T*stat
240241
AEGIS_AES_BLOCK_STORE(t + AES_BLOCK_LENGTH, tmp);
241242
for (i = 1; i < d; i++) {
242243
memcpy(r, t + i * 16, 16);
243-
memcpy(r + 16, t + AES_BLOCK_LENGTH + i * 16, 16);
244+
memcpy(r + AEGIS_RATE / 2, t + AES_BLOCK_LENGTH + i * 16, 16);
244245
AEGIS_absorb(r, state);
245246
}
246247
tmp = AEGIS_AES_BLOCK_LOAD_64x2(maclen << 3, d);

src/aegis/aegis128x4/aegis128x4_common.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,8 @@ AEGIS_mac_nr(uint8_t *mac, size_t maclen, uint64_t adlen, AEGIS_AES_BLOCK_T *sta
231231
tmp = AEGIS_AES_BLOCK_XOR(tmp, AEGIS_AES_BLOCK_XOR(state[1], state[0]));
232232
AEGIS_AES_BLOCK_STORE(t, tmp);
233233
for (i = 0; i < d / 2; i++) {
234-
memcpy(r, t + i * 32, 32);
234+
memcpy(r, t + i * 32, 16);
235+
memcpy(r + AEGIS_RATE / 2, t + i * 32 + 16, 16);
235236
AEGIS_absorb(r, state);
236237
}
237238
tmp = AEGIS_AES_BLOCK_LOAD_64x2(maclen << 3, d);
@@ -255,7 +256,7 @@ AEGIS_mac_nr(uint8_t *mac, size_t maclen, uint64_t adlen, AEGIS_AES_BLOCK_T *sta
255256
AEGIS_AES_BLOCK_STORE(t + AES_BLOCK_LENGTH, tmp);
256257
for (i = 1; i < d; i++) {
257258
memcpy(r, t + i * 16, 16);
258-
memcpy(r + 16, t + AES_BLOCK_LENGTH + i * 16, 16);
259+
memcpy(r + AEGIS_RATE / 2, t + AES_BLOCK_LENGTH + i * 16, 16);
259260
AEGIS_absorb(r, state);
260261
}
261262
tmp = AEGIS_AES_BLOCK_LOAD_64x2(maclen << 3, d);

src/sqlite3mc_version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
#define SQLITE3MC_VERSION_H_
1414

1515
#define SQLITE3MC_VERSION_MAJOR 2
16-
#define SQLITE3MC_VERSION_MINOR 0
17-
#define SQLITE3MC_VERSION_RELEASE 4
16+
#define SQLITE3MC_VERSION_MINOR 1
17+
#define SQLITE3MC_VERSION_RELEASE 0
1818
#define SQLITE3MC_VERSION_SUBRELEASE 0
19-
#define SQLITE3MC_VERSION_STRING "SQLite3 Multiple Ciphers 2.0.4"
19+
#define SQLITE3MC_VERSION_STRING "SQLite3 Multiple Ciphers 2.1.0"
2020

2121
#endif /* SQLITE3MC_VERSION_H_ */

0 commit comments

Comments
 (0)