We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.1.12
Darwin 23.6.0 arm64 arm
Sign any payload with the JOSE librery
return new SignJWT(payload1) .setProtectedHeader({ alg: 'HS256' }) .setIssuedAt() .setExpirationTime('7d') .sign(key)
and verify with the elysia-jwt
{ jwtAccess, body: { name } }) => { return jwtAccess.verify(jwt) }
This generates an error due to the iat check in the iat code: t.Optional(t.String())
t.Optional(t.String())
No error on schema verification
No response
node_modules
bun.lockb
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
What version of Elysia is running?
1.1.12
What platform is your computer?
Darwin 23.6.0 arm64 arm
What steps can reproduce the bug?
Sign any payload with the JOSE librery
and verify with the elysia-jwt
This generates an error due to the iat check in the iat code:
t.Optional(t.String())
What is the expected behavior?
No error on schema verification
What do you see instead?
No response
Additional information
No response
Have you try removing the
node_modules
andbun.lockb
and try again yet?No response
The text was updated successfully, but these errors were encountered: