I think my confusion here is just which how the question was given to me. I am having trouble decrypting this simple RSA message.
Message: $0882~ 1090~ 1471~ 1899~ 2753~ 0309$
$p = 43 ; q = 71; e = 19$.
Someone please check my work that I have so far and I would appreciate help getting the final answer.
I have $N = 3053$ ; $\phi = 2940$; and $d = 619$
I am having trouble getting the answer, I know $M = C^d \pmod N$.
But does that mean I take the entire long message and raise it to the power of $19$?
UPDATE: FULL PROMPT:
"Assume that someone is going to send you an encrypted message (C = Me (mod pq)), and provide you with the following key (e,n), where n = p × q = 43 × 71 and e = 19. Given that you know the factorization of n, you can calculate d for decrypting the message by using PA1 extended Euclidean to calculate d (remember d is the inverse of e mod(p−1)(q−1)). Write the code for modular exponentiation because as you will see, d is a large number and you need this code to figure out what the message M was using the formula M = C d (mod pq). For both, Encryption and Decryption, each block message we will use two letters. Remember, we represent each letter of the alphabet by two digits, starting with 00 for space, 01 for A, 02 for B, etc....a total of 26 letters (including X, Y, Z). Decrypt the following message: 0882 1090 1471 1899 2753 0309. Good luck!
Note: You only need to solve on paper, do not write a code"