I have a question in regards to a task I've been given at uni. I need to encode the string 'Cyber' 2 characters at a time with RSA with padding being space.
What do the chunks look like than need to be encrypted? Should I just concatenate the ascii codes 'Cy',then 'be',then 'r ' , ex 'Cy'=67121, or should I separate them with a space - '6732121'?
I know the question is purely mathematical, just to see us calculating the stuff but I'm struggling to imagine how a program would interpret the decoded message.
Thanks in advance.