2021-08-11 23:59:29 -04:00
|
|
|
:mod:`binascii` -- binary/ASCII conversions
|
|
|
|
===========================================
|
2014-12-01 18:51:12 -05:00
|
|
|
|
2021-08-11 23:59:29 -04:00
|
|
|
.. module:: binascii
|
2014-12-01 18:51:12 -05:00
|
|
|
:synopsis: binary/ASCII conversions
|
|
|
|
|
2017-07-02 08:37:31 -04:00
|
|
|
|see_cpython_module| :mod:`python:binascii`.
|
|
|
|
|
2014-12-01 18:51:12 -05:00
|
|
|
This module implements conversions between binary data and various
|
|
|
|
encodings of it in ASCII form (in both directions).
|
|
|
|
|
|
|
|
Functions
|
|
|
|
---------
|
|
|
|
|
2016-04-07 05:39:00 -04:00
|
|
|
.. function:: hexlify(data, [sep])
|
2014-12-01 18:51:12 -05:00
|
|
|
|
2020-12-13 00:41:12 -05:00
|
|
|
Convert the bytes in the *data* object to a hexadecimal representation.
|
|
|
|
Returns a bytes object.
|
2016-04-07 05:39:00 -04:00
|
|
|
|
2020-12-13 00:41:12 -05:00
|
|
|
If the additional argument *sep* is supplied it is used as a separator
|
|
|
|
between hexadecimal values.
|
2016-04-07 05:39:00 -04:00
|
|
|
|
2015-05-18 17:41:25 -04:00
|
|
|
.. function:: unhexlify(data)
|
|
|
|
|
2016-04-27 08:47:33 -04:00
|
|
|
Convert hexadecimal data to binary representation. Returns bytes string.
|
2015-05-18 17:41:25 -04:00
|
|
|
(i.e. inverse of hexlify)
|
2016-04-05 07:00:12 -04:00
|
|
|
|
|
|
|
.. function:: a2b_base64(data)
|
|
|
|
|
2017-08-04 19:01:35 -04:00
|
|
|
Decode base64-encoded data, ignoring invalid characters in the input.
|
|
|
|
Conforms to `RFC 2045 s.6.8 <https://tools.ietf.org/html/rfc2045#section-6.8>`_.
|
|
|
|
Returns a bytes object.
|
2016-04-05 07:00:12 -04:00
|
|
|
|
2022-01-15 09:19:59 -05:00
|
|
|
.. function:: b2a_base64(data, *, newline=True)
|
2016-04-05 07:00:12 -04:00
|
|
|
|
2017-08-04 19:01:35 -04:00
|
|
|
Encode binary data in base64 format, as in `RFC 3548
|
|
|
|
<https://tools.ietf.org/html/rfc3548.html>`_. Returns the encoded data
|
2022-01-15 09:19:59 -05:00
|
|
|
followed by a newline character if newline is true, as a bytes object.
|