I am writing a program and this is what was found wrong with it. This program is suppose to decrypt an encrypted message (char CodedMessage[16] = ":mmZ\\dxZmx]Zpgy). Any help to change this computation would be greatly appreciated.


//**************************
// This is the code to encrypt a message
// You need to change this computation to decrypt an encrypted message
if ((e + key) > 126)
{
d = 32 +((e + key) -127);
}
else
{
d = e + key;
}
//**************************