<p>RSA encryption can be used for many things such as keeping important messages secured. It is very difficult to break or decode messages that have been encrypted by RSA encryption if not given a public key. There are a few steps that one must go through in order to encrypt and decrypt a message. <br></p><p>We can look at few variables that are needed through the RSA encryption process:<br></p><div><span class="ltx_Math" contenteditable="false" data-equation="e">\(e\)</span> will be our public key&nbsp;<br></div><div><span class="ltx_Math" contenteditable="false" data-equation="d">\(d\)</span> is the value used for decoding and is only given to the receiver&nbsp;<br></div><div><span class="ltx_Math" contenteditable="false" data-equation="p">\(p\)</span> and <span class="ltx_Math" contenteditable="false" data-equation="q">\(q\)</span> are the primes <br></div><div><span class="ltx_Math" contenteditable="false" data-equation="n">\(n\)</span>&nbsp;is the result of&nbsp;<span class="ltx_Math" contenteditable="false" data-equation="pq">\(pq\)</span> <br></div><div><span class="ltx_Math" contenteditable="false" data-equation="M">\(M\)</span> is the original message&nbsp;<br></div><div><span class="ltx_Math" contenteditable="false" data-equation="C=M^e">\(C=M^e\)</span>&nbsp;(mod&nbsp;<span class="ltx_Math" contenteditable="false" data-equation="n">\(n\)</span>) is used to encrypt messages <br></div><div><span class="ltx_Math" contenteditable="false" data-equation="C^d">\(C^d\)</span>&nbsp;(mod&nbsp;<span class="ltx_Math" contenteditable="false" data-equation="n">\(n\)</span>) is used to decrypt messages<br></div><div><br></div>