How to XOR a byte output?

Chris Angelico rosuav at gmail.com
Wed Apr 13 10:31:33 EDT 2016


On Wed, Apr 13, 2016 at 11:51 PM, durgadevi1
<srirajarajeswaridevikrupa at gmail.com> wrote:
> Ok thank you ChrisA. :)
>
> I would like to check with you whether using binascii.hexlify() to convert the series of bytes into alphabets and integers is correct.

It converts the bytes (which are small integers) into the hexadecimal
representation of them (which is digits 0-9 and A-F or a-f). It's
often the easiest way to see what the byte values *are*, but it
doesn't help you much with figuring out what they *mean*.

ChrisA



More information about the Python-list mailing list