Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
b54b26b
add argon2-browser dependency
mymindstorm Aug 18, 2019
49e78c6
wrapper argon2-browser
mymindstorm Aug 18, 2019
cb77e07
argon2 for new accounts and imports
mymindstorm Aug 18, 2019
d6ea8c5
forgot an await
mymindstorm Aug 18, 2019
193eac1
migrate
mymindstorm Aug 21, 2019
ba2adb6
fix performance issue
mymindstorm Aug 24, 2019
b00a276
update argon2 and types
mymindstorm Aug 24, 2019
db657f7
- remove the need for encryption where it wasn't needed
mymindstorm Aug 26, 2019
ff84135
don't animate password prompt
mymindstorm Aug 26, 2019
78e1d30
hash mem 16 KiB => 8 KiB
mymindstorm Aug 30, 2019
b03fcad
fix password change not working
mymindstorm Aug 30, 2019
70e6ecd
no cookie again. developer.mozilla.org/en-US/docs/Web/HTTP/Cookies#Se…
mymindstorm Oct 17, 2019
cdc397e
migrate to key based system
mymindstorm Oct 17, 2019
31cc098
add hash
mymindstorm Oct 17, 2019
6d0b41e
fix bug
mymindstorm Oct 17, 2019
7931b86
entry hash -> uuid
mymindstorm Oct 17, 2019
67d3b9c
password hash check + warning
mymindstorm Oct 17, 2019
6198965
add key to backup
mymindstorm Oct 17, 2019
b7fa05f
update argon2-browser
mymindstorm Oct 18, 2019
cda3114
remove argon.hash
mymindstorm Oct 20, 2019
ce43fb7
Sandbox argon2 in Chrome
mymindstorm Oct 20, 2019
b8a8f88
- show pass if key in storage
mymindstorm Oct 20, 2019
287627b
import
mymindstorm Oct 20, 2019
bd6ed29
fix #412 (#413)
mymindstorm Dec 27, 2019
71cef1e
Fix #414 (#419)
mymindstorm Jan 25, 2020
3c0ac6a
Merge branch 'dev' into argon2
mymindstorm Jan 25, 2020
352d320
Update webpack.config.js
mymindstorm Jan 26, 2020
2fb3ddd
fix type error
mymindstorm Jan 26, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions manifest-chrome.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,20 @@
"oauth2": {
"client_id": "292457304165-u8ve4j79gag5o231n5u2pdtdrbfdo1hh.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/drive.file"
"https://www.googleapis.com/auth/drive.file"
]
},
"background": {
"scripts": [
"dist/background.js"
],
"persistent": false
"persistent": true
},
"sandbox": {
"pages": [
"view/argon.html"
],
"content_security_policy": "sandbox allow-scripts; script-src 'self' 'unsafe-eval';"
},
"permissions": [
"activeTab",
Expand Down
Loading