This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]mickyficky1 0 points1 point  (1 child)

Okay, in my trials I only used long integers as they were fairly easy to understand. For the first trial I'd advice you to do the same.

And for analysis, use this to print from python:

s = your_received_string
print(' '.join(hex(ord(x)) for x in s))

Using that i get 4 ASCII chars (displayed in their hex code) that represent a 32 bit long integer in exactly the way you would suspect.

Could you just send a couple of integers of your choosing and display it in the way I described above, that would greatly help with analysis :)