Implemented password hashing and hash checking (with salting). Still need to add the connecting to database portion. Also implemented the base digestion for connecting to Redis as a session token store. Signed-off-by: Ethan Wellenreiter <ewellenreiter@gmail.com>
15 lines
285 B
Modula-2
15 lines
285 B
Modula-2
module signin
|
|
|
|
go 1.24.2
|
|
|
|
require (
|
|
github.com/redis/go-redis/v9 v9.7.3
|
|
golang.org/x/crypto v0.36.0
|
|
)
|
|
|
|
require (
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
golang.org/x/sys v0.31.0 // indirect
|
|
)
|