Python Cryptography Tools

From Wiki
Revision as of 23:17, 8 February 2024 by Scott (talk | contribs) (Created page with "== Encoding == Integers can be '''encoded''' as either binary, decimal, hexadecimal, or Base64 (among others). <pre> >>> bin(95616) '0b10111010110000000' >>> hex(95616) '0x17580' >>> import base64 >>> base64.b64encode(95616) ... TypeError: a bytes-like object is required, not 'int' </pre>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Encoding

Integers can be encoded as either binary, decimal, hexadecimal, or Base64 (among others).

>>> bin(95616)
'0b10111010110000000'
>>> hex(95616)
'0x17580'
>>> import base64
>>> base64.b64encode(95616)
...
TypeError: a bytes-like object is required, not 'int'