I did a little research on cryptography. RSA stands for Rivest=Shamir-Adleman,
the cryptographers who came up with the RSA cryptographic algorithm in 1977.
It's a cookbook formula.
Carlos wants to send Cecil a message encrypted with RSA. Cecil has published his
public encryption exponent $4$ and his public modulus $15$. When Carlos encrypts
the number $11$ with this system, what is the result?
Cecil has published his public encryption exponent as 4 and his public modulus
as 15.
Carlos wants to encrypt the number 11 using this RSA public key.
The formula for RSA encryption is:
, where:
C = the ciphertext (the encrypted message)
M = the plaintext message (in this case, 11)
e = the public encryption exponent (4)
n = the public modulus (15)
Plugging in the values:
976
15)14641
135
114
105
91
90
1
The remainder is 1,
so
Therefore, the result of encrypting the number 11 with Cecil's public key (exponent 4, modulus 15) is 1.
So the encrypted message that Carlos would send to Cecil is the number 1.
Edwin