Add password hashing with argon2

This commit is contained in:
bronku 2025-03-28 21:53:04 +01:00
parent 01da46b81e
commit 1dd0332bc1
11 changed files with 107 additions and 15 deletions

5
go.mod
View file

@ -3,3 +3,8 @@ module github.com/Bronku/iroon
go 1.23.5
require github.com/mattn/go-sqlite3 v1.14.24
require (
golang.org/x/crypto v0.36.0
golang.org/x/sys v0.31.0 // indirect
)