forked from rhashimoto/wa-sqlite
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: Encryption with multiple ciphers (#23)
* wip: sqlite3mc * random * register vfs * Split multi cipher builds * Add changeset * Export multicipher module * Fix multiple cipher builds * Test emcc flags * Test mc sqlite * WIP: Testing new builds * Add xCurrentTimex64 implementation * xCurrentTimeInt64 implementation * Update emcc flags to normal builds * Clean up * Export non asyncify mc wasm * Clean up demo logs * PR feedback * Revert formatting * Revert formatting * Revert stack size * SImplify xcurrenttime * Add julian epoch reference --------- Co-authored-by: stevensJourney <[email protected]>
- Loading branch information
1 parent
1bb58d3
commit 7536ead
Showing
23 changed files
with
244 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@journeyapps/wa-sqlite": minor | ||
--- | ||
|
||
Enable database encryption with multiple ciphers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[ | ||
"_sqlite3mc_vfs_create", | ||
"_sqlite3mc_config", | ||
"_sqlite3mc_cipher_index", | ||
"_sqlite3mc_config_cipher", | ||
"_sqlite3mc_cipher_count", | ||
"_sqlite3mc_cipher_name" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -260,4 +260,4 @@ | |
"_sqlite3_wal_checkpoint", | ||
"_sqlite3_wal_checkpoint_v2", | ||
"_sqlite3_wal_hook" | ||
] | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters