init module

This commit is contained in:
Risotto Bias 2024-12-29 03:35:36 -07:00
parent 966f7761e4
commit 9673984551
7 changed files with 20 additions and 1 deletions

View file

@ -1,3 +1,12 @@
# Who Is This
> Session library code
- Logins
- Argon2ID
- Bcrypt
- MD5 pepper (for fun)
- Sessions
- Opaque
- JWTs

3
go.mod Normal file
View file

@ -0,0 +1,3 @@
module git.bivouac.wiki/use/whoisthis
go 1.22.5

1
login/argon2id/main.go Normal file
View file

@ -0,0 +1 @@
package argon2id

1
login/bcrypt/main.go Normal file
View file

@ -0,0 +1 @@
package bcrypt

3
login/md5pepper/main.go Normal file
View file

@ -0,0 +1,3 @@
package md5pepper
// an old historical implementation

1
session/jwt/main.go Normal file
View file

@ -0,0 +1 @@
package jwt

1
session/opaque/main.go Normal file
View file

@ -0,0 +1 @@
package opaque