- #1
- 55
- 1
I have some data which I am encrypting using modulus - (data + 203) mod 200. If the data is 150, I get the result as 153. Is there a way to decrypt and get my data (150) back? I don't know how to calculate inverse of this operation...
That is the same mod 200.i am adding 203 to the data (not 3)
Of course it is possible.But (153-203) is not possible
Yes...got it. Thanks...That is the same mod 200.Of course it is possible.