From 0d640e791493de79b43b050a13b1cf9c081854ec Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Fri, 21 Nov 2025 18:44:58 -0800 Subject: 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. --- go.mod | 3 --- 1 file changed, 3 deletions(-) (limited to 'go.mod') 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 -- cgit v1.3.1