Skip to content

Commit 52ba939

Browse files
Default page size to 1024
1 parent 3f990b4 commit 52ba939

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/crypto_impl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ typedef struct {
7070
static unsigned int default_flags = DEFAULT_CIPHER_FLAGS;
7171
static unsigned char hmac_salt_mask = HMAC_SALT_MASK;
7272
static int default_kdf_iter = PBKDF2_ITER;
73-
static int default_page_size = SQLITE_DEFAULT_PAGE_SIZE;
73+
static int default_page_size = 1024;
7474
static unsigned int sqlcipher_activate_count = 0;
7575
static sqlite3_mutex* sqlcipher_provider_mutex = NULL;
7676
static sqlcipher_provider *default_provider = NULL;

0 commit comments

Comments
 (0)