-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
48 lines (38 loc) · 917 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# production
/build
# misc
.DS_Store
*.pem
# debug
/web/npm-debug.log*
/web/yarn-debug.log*
/web/yarn-error.log*
# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local
# vercel
vercel/.vercel
**/*.trace
**/*.zip
**/*.tar.gz
**/*.tgz
**/*.log
**/*.bun
/.idea
dist/
node_modules/
.env
.vite/
/web/tsconfig.app.tsbuildinfo
/web/tsconfig.node.tsbuildinfo
# generate aes primary key to encrypt / decrypt the data
# user chooses one strength (iterations) [input everytime]
# -> randomly genrated salt note down [initial login -> local storage]
# -> chooses password [everytime]
# = derived key -> used to encrypt primary key
# using pbkdf2 -> password + salt + iterations -> derived key
# use as key for secondary aes decryption -> primary key
# primary key used to encrypt / decrypt the data