Padding schemes matter: OAEP/PSS are modern defaults; PKCS#1 v1.5 still appears but needs careful handling.
Signing and encryption differ: private key signs, public verifies; public encrypts, private decrypts.
Hybrid systems usually RSA-encrypt a random symmetric key and AES-encrypt the payload.
Exponent 65537 is standard; tiny exponents have known attacks—libraries pick safe values.
Compared to ECC, RSA signatures are larger/slower but widely documented for legacy interop.
WebCrypto import failures usually mean wrong format/spki/pkcs8 or mismatched key usages.
Private operations should run in constant-time hardware/software in production.
Record key provenance, rotation, and algorithm parameters for audits.
This page is for debugging—not a certified cryptographic appliance.
Core parsing and computation run in your browser; by default your raw business payload is not persisted to this site’s servers (see on-page privacy notes).
The pipeline is typically: read input → parse (lexical/syntactic/structured) → transform → render; failures aim to be diagnosable.