Stop Wrestling with OpenSSL: Generate JWKS in Seconds via Browser ๐
Source: Dev.to

What is this tool?
Itโs a utility within devtoolkits.app that generates RSA key pairs and formats them into JWKS and PEM instantly.
Key Features
- Instant RSA Generation โ Choose between 2048 or 4096 bits.
- Full JWKS Output โ Includes
kid,alg, anduseparameters ready to be used in your/.well-known/jwks.json. - Private Key (PEM) โ Get the private key simultaneously for signing your test JWTs.
- Custom
kidโ Specify your Key ID to match your existing system configuration.
How to use it
- Go to the JWKS Generator: .
- (Optional) Set your
kidor key size. - Click Generate Keys.
- Copy the JWKS JSON for your public endpoint and the PEM for your signing logic.
Best for
- Local Development โ Mocking OIDC providers without setting up a real IDP.
- Testing โ Verifying your applicationโs JWT signature validation logic.
- Learning โ Seeing exactly what goes into a JWKS object.
Wrap up
Security configuration shouldnโt be a bottleneck. I hope this tool saves you some terminalโheadaches!
Check it out here: .