To use RSA encryption on words, the computer first must convert the letter into a number. To do this, it uses a system called ASCII (American Standard Code for Information Interchange) which assigns a decimal value to each letter. Here are the ASCII codes for uppercase letters A - Z:

A B C D E F G H I J K L M
65 66 67 68 69 70 71 72 73 74 75 76 77


N O P Q R S T U V W X Y Z
78 79 80 81 82 83 84 85 86 87 88 89 90


A five letter word was converted to decimal values, then encrypted using the RSA public key e = 5, n = 1691. The encrypted message was:
1682 1023 84 1569 1569

Decrypt this message back to letters using the private key d = 317.