From bf576dfaeef51078d7bdae885550fc235d49c1eb Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sat, 10 Jun 2023 00:54:57 -0400 Subject: [PATCH] fix: change jwtKey to ed25519.PrivateKey --- service/auth/auth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/auth/auth.go b/service/auth/auth.go index bb12296..7b70ab3 100644 --- a/service/auth/auth.go +++ b/service/auth/auth.go @@ -20,7 +20,7 @@ import ( "time" ) -var jwtKey = []byte{} +var jwtKey = ed25519.PrivateKey{} var blocklist *jwt.Blocklist