// rsa-2048 · oaep-sha256 · sha256withrsa signatures
Keys are generated on the server and returned once — nothing is stored. Save the private key now: without it nothing encrypted for this public key can be read back.
Encrypts with the public key. A 2048-bit key with OAEP-SHA256 padding holds at most 190 bytes — for anything bigger use the hybrid tab.
Decrypts with the private key.
Signs with the private key using SHA256withRSA. The message is hashed first, so there is no size limit. A signature proves authorship — it does not hide the message.
Checks a signature against the message with the public key.
For data of any size: a fresh AES-256-GCM key encrypts the payload and the public key wraps only that key. The result is an envelope holding both — keep them together, either half alone is useless.
Unwraps the AES key with the private key, then decrypts the payload. Paste the envelope produced by the hybrid encrypt tab, or load it from a file.