ok, ill just get right to the point.. i need this somewhat quick. its not TOO complex.. but here it goes..
for all non-programmers.. % = modulus/remainder..
example 11%3 = 2....because 3 goes into 11 , 3 times = 9 with a remainder/moduls of 2.
X = 20, i can equal 0-19.... but the equationa i need, will satisfy this..
i need a decryption algorithm for the above Enc variable. . . . . .
| Code: |
| Enc = (A[i] - ((i * i) * X)) % 59 |
for all non-programmers.. % = modulus/remainder..
example 11%3 = 2....because 3 goes into 11 , 3 times = 9 with a remainder/moduls of 2.
X = 20, i can equal 0-19.... but the equationa i need, will satisfy this..
| Code: |
| Dec = "the inverse of" Enc. |
i need a decryption algorithm for the above Enc variable. . . . . .
