// Cryptographic toolkit

Password & Key Generator
(Web Crypto / OpenSSL compatible)

๐Ÿ” Secure Password

Click "Generate Password"
๐Ÿ”ง OpenSSL equivalent: openssl rand -base64 24 | head -c 24

๐Ÿ”‘ RSA Key Pair (2048-bit)

Public Key (PEM)
Not generated yet
Private Key (PEM)
Not generated yet
๐Ÿ’ก Equivalent OpenSSL commands:
openssl genrsa -out private.pem 2048 && openssl rsa -in private.pem -pubout -out public.pem

๐Ÿ“‹ What is this?

Using the Web Crypto API (subtle crypto) โ€” same algorithms as OpenSSL: RSA-OAEP with SHA-256, and cryptographically secure random passwords. No data stays on my site. The displayed OpenSSL commands produce identical results when run on your own machine.