String manipulation question
#5

Could be a conversion for different character sets, target could be ANSI (256 chars, would match - just a guess tho).

The formula may look weird but could be simplified from the original.

EDIT: Scratch that, it's a simple form of encryption.

It just offsets each character by a number calculated from its position. Can be "decrypted" again by doing

Код:
string[x] -= (3^x) * (x % 15);

if(string[x] < 0) string[x] += 256;
Reply


Messages In This Thread
String manipulation question - by Seifspeed - 08.03.2017, 22:26
Re: String manipulation question - by Toroi - 08.03.2017, 23:39
Re: String manipulation question - by DRIFT_HUNTER - 09.03.2017, 00:53
Re: String manipulation question - by Nero_3D - 09.03.2017, 02:20
Re: String manipulation question - by NaS - 09.03.2017, 03:05

Forum Jump:


Users browsing this thread: 1 Guest(s)