1
vote
2answers
306 views

vb xor checksum

This question may already have been asked but nothing on SO actually gave me the answer I need. I am trying to reverse engineer someone else's vb.NET code and I am stuck with what a Xor is doing ...
1
vote
1answer
202 views

Easy way to generate XOR checksum on a stream?

In C# is there an easy way to generate an XOR checksum on a MemoryStream (binary) excluding the first, and last two, bytes? Also, is it easier to extend the BinaryWriter and do it as the Stream is ...
1
vote
2answers
819 views

How to generate a random unique string with more than 2^30 combination. I also wanted to reverse the process. Is this possible?

I have a string which contains 3 elements: a 3 digit code (example: SIN, ABD, SMS, etc) a 1 digit code type (example: 1, 2, 3, etc) a 3 digit number (example: 500, 123, 345) Example string: ...
2
votes
2answers
2k views

C++ xor all data in packet

I need a small program that can calculate the checksum from a user input. Unfortunately, all I know about the checksum is that it's xor all data in packet. I have tried to search the net for an ...