mirror of
https://github.com/floccusaddon/floccus.git
synced 2026-04-26 06:35:59 +03:00
[PR #832] [MERGED] Fix Encryption scheme #1765
Labels
No labels
browser-specific
bug
correctness issues
enhancement
feature: Google Drive
feature: Linkwarden
feature: git
feature: nextcloud-bookmarks
feature: tabs
feature: webdav
help wanted
native-app
priority: high
priority: low
priority: medium
pull-request
question
question
stale
upstream
waiting for more information
wontfix
🙁 Not following issue template
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/floccus#1765
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/floccusaddon/floccus/pull/832
Author: @marcelklehr
Created: 2/12/2021
Status: ✅ Merged
Merged: 2/14/2021
Merged by: @marcelklehr
Base:
develop← Head:fix/crypto📝 Commits (2)
640bfd9Implement new Crypto module and test it9dad1e1Upgrade to new crypto module📊 Changes
7 files changed (+175 additions, -25 deletions)
View changed files
📝
manifest.json(+1 -1)📝
package.json(+1 -1)📝
src/lib/AccountStorage.js(+10 -4)📝
src/lib/Controller.js(+45 -19)➕
src/lib/Crypto.ts(+91 -0)📝
src/lib/DefunctCrypto.js(+0 -0)📝
src/test/test.js(+27 -0)📄 Description
The existing encryption implementation (currently only used for securing your credentials residing in your browser storage), while not strictly broken, was built in a somewhat uneducated fashion. My intention with this PR is to change that.
Here is a list of changes:
The changes are transparent to the user: Upon installing and unlocking the new version floccus will automatically decrypt all data with the old implementation and re-encrypt it with the new implementation.
Additionally, this will pave the way for #224
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.