summary refs log tree commit diff
path: root/api/src/test/jwt2.ts
diff options
context:
space:
mode:
authorHayden Young <hi@hbjy.dev>2021-10-15 09:42:31 +0000
committerGitHub <noreply@github.com>2021-10-15 09:42:31 +0000
commit865389d0d054a221950c944cd535964ca009d131 (patch)
treed3019344601c12892e28b0584513b6127b608fc1 /api/src/test/jwt2.ts
parentfix: don't set location by default (diff)
parent:bug: fix migration + autojoin (diff)
downloadserver-865389d0d054a221950c944cd535964ca009d131.tar.xz
chore: merge master into cdn-s3
Diffstat (limited to '')
-rw-r--r--api/src/test/jwt2.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/api/src/test/jwt2.ts b/api/src/test/jwt2.ts
deleted file mode 100644

index e231233d..00000000 --- a/api/src/test/jwt2.ts +++ /dev/null
@@ -1,13 +0,0 @@ -import jwt from "jsonwebtoken"; - -const algorithm = "HS256"; -const iat = Math.floor(Date.now() / 1000); - -// @ts-ignore -const token = jwt.sign({ id: "311129357362135041" }, "secret", { - algorithm, -}); -console.log(token); - -const decoded = jwt.verify(token, "secret", { algorithms: [algorithm] }); -console.log(decoded);