Question: = Q5. An RSA encryption system is set up and used in this question. We choose p=17 and q=19 and e = 23. Find the

= Q5. An RSA encryption system is set up and used in this question. We choose p=17 and q=19 and e = 23. Find the public key and private key as we did in the class. (a) If the plain text is F, what is the cipher number? Here the result will be a number representing the ciphertext and finding that number is sufficient. (b) Verify that you obtain F again when the ciphertext C is deciphered with the private key. Please clearly show your steps in obtaining your results; please also use the following pow function in Python that will be useful for this question. PYTHON NOTE: Use the Python function pow(base, exp, N) which efficiently calculate. For instance, in order to compute 1111249 mod 1189, you need to call this function as x = pow( 1113, 249, 1189) print(x) Which prints the correct answer 19
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
