_noob.tools

RSA Key Pair Generator

Strictly offline cryptography engine. Generates PKCS#1 Private Keys and X.509 Subject Public Keys purely in-browser via JavaScript Web Workers. The keys generated here never leave your device.

What is the Offline RSA Cryptographic Engine?

RSA (Rivest-Shamir-Adleman) relies on the mathematical difficulty of factoring the product of two extremely large prime numbers. Generating a 4096-bit key requires compiling massive primes via iterative testing.

How it Works under the hood

We load the widely trusted 'node-forge' suite into a segregated Web Worker pipeline (to prevent your browser tab from crashing). The Javascript thread hunts for strong prime numbers (P and Q), computes the exact RSA modulus, and outputs the mathematically linked Asymmetric Keypair natively to Base64-armored PEM blobs.

SysAdmin & Security Use Cases

  • »Generating secure OpenSSH server keys instantly without shell access
  • »Creating asymmetrical JWT (JSON Web Token) RS256 signing keys
  • »Encrypting payload envelopes for Zero-Trust architectures
  • »Establishing throwaway mutual TLS (mTLS) identities