2014-12-01 18:51:12 -05:00
|
|
|
:mod:`ubinascii` -- binary/ASCII conversions
|
|
|
|
============================================
|
|
|
|
|
|
|
|
.. module:: ubinascii
|
|
|
|
:synopsis: binary/ASCII conversions
|
|
|
|
|
|
|
|
This module implements conversions between binary data and various
|
|
|
|
encodings of it in ASCII form (in both directions).
|
|
|
|
|
|
|
|
Functions
|
|
|
|
---------
|
|
|
|
|
|
|
|
.. function:: hexlify(data)
|
|
|
|
|
|
|
|
Convert binary data to hexadecimal representation. Return bytes string.
|
2015-05-18 17:41:25 -04:00
|
|
|
|
|
|
|
.. function:: unhexlify(data)
|
|
|
|
|
|
|
|
Convert hexadecimal data to binary representation. Return bytes string.
|
|
|
|
(i.e. inverse of hexlify)
|
2016-04-05 07:00:12 -04:00
|
|
|
|
|
|
|
.. function:: a2b_base64(data)
|
|
|
|
|
|
|
|
Convert Base64-encoded data to binary representation. Return bytes string.
|
|
|
|
|
|
|
|
.. function:: b2a_base64(data)
|
|
|
|
|
|
|
|
Encode binary data in Base64 format. Return string.
|