Decrypt text using RSA-2048 private key
Your private key is only used in your browser and is never sent to the server.
RSA decryption uses one of the core principles of asymmetric cryptography: data encrypted with a public key can only be decrypted with the mathematically corresponding private key. This relies on the difficulty of factoring large prime numbers. For RSA-2048, this is practically impossible with current computing power.
RSA private keys are usually stored in PEM (Privacy Enhanced Mail) format:
-----BEGIN PRIVATE KEY----- MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQC... ... -----END PRIVATE KEY-----
This tool performs all decryption operations in your browser using the Web Crypto API. Your private key and decrypted data are never sent to the server. This implements a "zero-knowledge" approach, maximizing privacy. The tool works even without an internet connection.