Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Willena committed Mar 16, 2021
2 parents b019b3c + f0981ff commit 289e939
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version=3.35.0
artifactVersion=3.35.0
version=3.35.1
artifactVersion=3.35.1-SNAPSHOT
4 changes: 2 additions & 2 deletions src/main/java/org/sqlite/mc/SQLiteMCSqlCipherConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public SQLiteMCSqlCipherConfig setPlaintextHeaderSize(int value) {
}

public static SQLiteMCSqlCipherConfig getDefault() {
return getV4Defaults();
return new SQLiteMCSqlCipherConfig();
}

public static SQLiteMCSqlCipherConfig getV1Defaults() {
Expand Down Expand Up @@ -120,7 +120,7 @@ public static SQLiteMCSqlCipherConfig getV4Defaults() {
config.setHmacUse(true);
config.setHmacPgno(HmacPgno.LITTLE_ENDIAN);
config.setHmacSaltMask(0x3a);
config.setLegacy(0);
config.setLegacy(4);
config.setLegacyPageSize(4096);
config.setKdfAlgorithm(KdfAlgorithm.SHA512);
config.setHmacAlgorithm(HmacAlgorithm.SHA512);
Expand Down

0 comments on commit 289e939

Please sign in to comment.