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
commit892459a93879f9820f3672dece66f4ebdfc8701d (patch)
treeea2d14a706eb6e2e455ac23fe43e7343dee3f6be /api/src/test/jwt2.ts
parentfix: don't set location by default (diff)
parent:bug: fix migration + autojoin (diff)
downloadserver-892459a93879f9820f3672dece66f4ebdfc8701d.tar.xz
chore: merge master into cdn-s3
Diffstat (limited to 'api/src/test/jwt2.ts')
-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);