You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 9, 2021. It is now read-only.
On of the things I like about java.jsonwebtoken.io is that it generates a key for the HS algorithm variants. And, the key it generates is always a base64 encoded binary byte array that's the max-width the given algorithm supports.
For instance, if you change the algorithm from HS256 to HS512, you'll notice a much longer key is generated.
It'd be nice to have this - as an option at least - for jsonwebtoken.io.
Most examples on the web use secret for the secret which, while human readable, is an anti-pattern that we shouldn't propagate.
The text was updated successfully, but these errors were encountered:
On of the things I like about java.jsonwebtoken.io is that it generates a key for the
HS
algorithm variants. And, the key it generates is always a base64 encoded binary byte array that's the max-width the given algorithm supports.For instance, if you change the algorithm from HS256 to HS512, you'll notice a much longer key is generated.
It'd be nice to have this - as an option at least - for jsonwebtoken.io.
Most examples on the web use
secret
for the secret which, while human readable, is an anti-pattern that we shouldn't propagate.The text was updated successfully, but these errors were encountered: