QUOTE(Daiken @ 8 Mar, 2008 - 09:21 PM)

Anyone have an idea how I could figure out what cryption or compression was used for this:
http://www.tipitek.com/VanCryption.txtI've changed the ASCII offset of the entire string from -29 to +131 (everything beyond will result in some characters being out of the valid range) but didn't get any meaningful data.
Also I've tried a Gzip decryption which failed due to missing 'magic number'.
Either this is encrypted with a proper encryption key or compressed using a different data compression than I've tried so far.
Each line in the file represents the return value of the "sendto" function within ws2_32.dll (Win socket library, so it's most likely a UDP packet).
Would appreciate some input from you.
Just an intuitive leap, but this doesn't look like encryption (and if it is, it's a very poor attempt). Good encryption usually has a fairly uniform frequency distribution, not the repetitions involved here.
Return value of the sendto function? What do you mean by that? The return value from actually calling it? That's an int, which returns an error code. Or perhaps the send buffer? Or perhaps what is received on the other end?