Encode your messages with RSA Algoritm
About Morse Code
The RSA algorithm is a foundational public-key cryptographic system that secures data by using two mathematically linked keys—one public for encryption and one private for decryption. Its strength comes from the difficulty of factoring extremely large composite numbers, a task that becomes computationally impractical as key sizes grow.
By generating a pair of primes and combining them into a modulus, RSA creates a structure where messages can be safely exchanged without sharing secret keys in advance. Today, it underpins secure web communication, digital signatures, and countless authentication systems, remaining a cornerstone of modern encryption despite the rise of newer algorithms.
How it works:
RSA is a public-key encryption system, which means:
You use one key to lock (encrypt) the message → public key
You use another key to unlock (decrypt) the message → private key
These keys are built using three main values:
Symbol Name Purpose
N Modulus Used in both public and private keys
E Public Exponent Used to encrypt
D Private Exponent Used to decrypt
What each value between N, E and D mean:
N: its an product made by two different prime numbers, example: (p * q)
E: its an number between 1 and the product by the primes that made N, meaning that: 1 < E < (p - 1) * (q - 1)
D: it is calculated by (1 (mod (p - 1)(q - 1))) / E
Examples
As some example we can show some of the most searched phrases in the internet into their generic rsa forms:
What is my IP? = 604|2170|1632|884|1992|3179|1230|1992|2271|487|1992|1486|2933|3216
When was WW2? = 604|2170|1313|2235|1992|1107|1632|1230|1992|604|604|538|3216
Why is the sky blue? = 604|2170|487|1992|3179|1230|1992|884|2170|1313|1992|1230|690|487|1992|2570|745|2160|1313|3216
Restaurants near me = 1859|1313|1230|884|1632|2160|2412|1632|2235|884|1230|1992|2235|1313|1632|2412|1992|2271|1313
Youtube = 99|2185|2160|884|2160|2570|1313
Amazon = 2790|2271|1632|1830|2185|2235
Facebook = 325|1632|281|1313|2570|2185|2185|690
Instagram = 1486|2235|1230|884|1632|2923|2412|1632|2271
ARTICLE ABOUT MORE INFORMATIONS ON RSA ENCODING
Read here!
More Options
If you want more encryption options just below you can find options like Hexadecimal, BASE64, Caesar Cipher and others.
This website uses cookies. We use cookies to personalise content/ads and to analyse our traffic.
Privacy Policy
About Us