init module
This commit is contained in:
parent
966f7761e4
commit
9673984551
7 changed files with 20 additions and 1 deletions
11
README.md
11
README.md
|
@ -1,3 +1,12 @@
|
||||||
# Who Is This
|
# Who Is This
|
||||||
|
|
||||||
> Session library code
|
> Session library code
|
||||||
|
|
||||||
|
|
||||||
|
- Logins
|
||||||
|
- Argon2ID
|
||||||
|
- Bcrypt
|
||||||
|
- MD5 pepper (for fun)
|
||||||
|
- Sessions
|
||||||
|
- Opaque
|
||||||
|
- JWTs
|
3
go.mod
Normal file
3
go.mod
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
module git.bivouac.wiki/use/whoisthis
|
||||||
|
|
||||||
|
go 1.22.5
|
1
login/argon2id/main.go
Normal file
1
login/argon2id/main.go
Normal file
|
@ -0,0 +1 @@
|
||||||
|
package argon2id
|
1
login/bcrypt/main.go
Normal file
1
login/bcrypt/main.go
Normal file
|
@ -0,0 +1 @@
|
||||||
|
package bcrypt
|
3
login/md5pepper/main.go
Normal file
3
login/md5pepper/main.go
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
package md5pepper
|
||||||
|
|
||||||
|
// an old historical implementation
|
1
session/jwt/main.go
Normal file
1
session/jwt/main.go
Normal file
|
@ -0,0 +1 @@
|
||||||
|
package jwt
|
1
session/opaque/main.go
Normal file
1
session/opaque/main.go
Normal file
|
@ -0,0 +1 @@
|
||||||
|
package opaque
|
Loading…
Reference in a new issue