File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# SQLCipher Change Log
22All notable changes to this project will be documented in this file.
33
4- ## [ unreleased ] - (TBD - [ unreleased ] )
5- - Adds PRAGMA cipher_integrity_check to perform external verification of page HMACs
4+ ## [ 4.2.0 ] - (May 2019 - [ 4.2.0 changes ] )
5+ - Adds PRAGMA cipher_integrity_check to perform independent verification of page HMACs
66- Updates baseline to upstream SQLite 3.28.0
77
88## [ 4.1.0] - (March 2019 - [ 4.1.0 changes] )
@@ -144,7 +144,9 @@ All notable changes to this project will be documented in this file.
144144### Security
145145- Change KDF iteration length from 4,000 to 64,000
146146
147- [ unreleased ] : https://github.com/sqlcipher/sqlcipher/compare/v4.1.0...prerelease
147+ [ unreleased ] : https://github.com/sqlcipher/sqlcipher/compare/v4.2.0...prerelease
148+ [ 4.2.0 ] : https://github.com/sqlcipher/sqlcipher/tree/v4.2.0
149+ [ 4.2.0 changes ] : https://github.com/sqlcipher/sqlcipher/compare/v4.1.0...v4.2.0
148150[ 4.1.0 ] : https://github.com/sqlcipher/sqlcipher/tree/v4.1.0
149151[ 4.1.0 changes ] : https://github.com/sqlcipher/sqlcipher/compare/v4.0.1...v4.1.0
150152[ 4.0.1 ] : https://github.com/sqlcipher/sqlcipher/tree/v4.0.1
Original file line number Diff line number Diff line change 1515 "requires_arc" : false ,
1616 "source" : {
1717 "git" : " https://github.com/sqlcipher/sqlcipher.git" ,
18- "tag" : " v4.1 .0"
18+ "tag" : " v4.2 .0"
1919 },
2020 "summary" : " Full Database Encryption for SQLite." ,
21- "version" : " 4.1 .0" ,
21+ "version" : " 4.2 .0" ,
2222 "subspecs" : [
2323 {
2424 "compiler_flags" : [
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ void sqlite3pager_reset(Pager *pPager);
5858#define CIPHER_STR (s ) #s
5959
6060#ifndef CIPHER_VERSION_NUMBER
61- #define CIPHER_VERSION_NUMBER 4.1 .0
61+ #define CIPHER_VERSION_NUMBER 4.2 .0
6262#endif
6363
6464#ifndef CIPHER_VERSION_BUILD
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ do_test verify-pragma-cipher-version {
4646 execsql {
4747 PRAGMA cipher_version;
4848 }
49- } {{4.1 .0 community}}
49+ } {{4.2 .0 community}}
5050db close
5151file delete -force test.db
5252
You can’t perform that action at this time.
0 commit comments