Searched refs:b85encode (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_base64.py | 469 eq(base64.b85encode(data), res) 471 self.check_other_types(base64.b85encode, b"www.python.org", 572 eq(base64.b85encode(b"x", pad=True), b'cmMzZ') 573 eq(base64.b85encode(b"xx", pad=True), b'cz6H+') 574 eq(base64.b85encode(b"xxx", pad=True), b'czAdK') 575 eq(base64.b85encode(b"xxxx", pad=True), b'czAet') 576 eq(base64.b85encode(b"xxxxx", pad=True), b'czAetcmMzZ')
|
/external/python/cpython3/Lib/test/test_zoneinfo/data/ |
D | update_test_data.py | 88 raw = base64.b85encode(compressed_zone)
|
/external/python/cpython3/Lib/ |
D | base64.py | 422 def b85encode(b, pad=False): function
|
/external/python/cpython3/Doc/library/ |
D | base64.rst | 201 .. function:: b85encode(b, pad=False)
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.4.rst | 653 :func:`~base64.b85encode`, and :func:`~base64.b85decode` provide the ability to
|