summary refs log tree commit diff
path: root/api/src/test/jwt2.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-10-11 15:13:16 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-10-11 15:13:16 +0200
commit4a34792be6a8b53d05d4359fc75064449db75eef (patch)
tree66091b07cac6d0485f2dbb4784dcad7bada34425 /api/src/test/jwt2.ts
parentImplement GIFs (diff)
parentMerge pull request #435 from TheArcaneBrony/change-enums-to-number (diff)
downloadserver-4a34792be6a8b53d05d4359fc75064449db75eef.tar.xz
Merge branch 'master' into pr/Thesourtimes/430
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);