summaryrefslogtreecommitdiffstats
path: root/go.mod
diff options
context:
space:
mode:
authorRose Hogenson <rosehogenson@posteo.net>2025-11-21 18:44:58 -0800
committerRose Hogenson <rosehogenson@posteo.net>2025-11-21 18:44:58 -0800
commit0d640e791493de79b43b050a13b1cf9c081854ec (patch)
treee545cc0db40612260c8a1995d38f6bb600a87c2f /go.mod
parent4be64dd369b4bbdf3c4c0972c949c6e150377699 (diff)
downloadroseh.moe-0d640e791493de79b43b050a13b1cf9c081854ec.tar.zst
Simplify the password hash and get rid of pbkdf2
Since the password already has 16 bytes of security, pbkdf2 isn't necessary here. We can use a simple sha256. I promise to pick a secure password.
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod3
1 files changed, 0 insertions, 3 deletions
diff --git a/go.mod b/go.mod
index c67fe11..ad0556c 100644
--- a/go.mod
+++ b/go.mod
@@ -4,9 +4,6 @@ go 1.24.0
require (
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
- golang.org/x/term v0.36.0
roseh.moe/pkg/ccl v0.1.1
roseh.moe/pkg/wordlist v1.0.2
)
-
-require golang.org/x/sys v0.37.0 // indirect