I have no idea what im doing I need to decode mmZ\dxZmx]Zpgy
, I have an example but not sure what to do please help!
If (EncryptedChar - Key < 32) then
DecryptedChar = ((EncryptedChar - Key) + 127) - 32
Else
DecryptedChar = (EncryptedChar - Key)
the key us unknown 1-100
Use
ord
andchr
to convert between the ordinals (ord
) of the ASCII value and the and the characters (chr
) they represent.Then you can loop through your string and apply the your algorithm to each.
For example:
Run this to see the output. I'll leave the exercise of finding the key value
88
up to you (hint: it involves iterations). You also appear to be missing the first letter fromSecretMessage
(probably a:
).