Question: Using RSA give your encryption as a list of three numbers.

Use RSA with the modulus n=119 and the exponent e=7, with the 95-character alphabet consisting of the printable ASCII characters to encrypt the word "Yes". Recall that the alphabet is given by

 

Alphabet:=cat(Select(IsPrintable,convert([seq(i,i=1..255)],bytes)));

 

so that Y=57, e=69, s=83. Give your encryption as a list of three numbers.

Please Wait...