Searched refs:b85decode (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_base64.py | 555 eq(base64.b85decode(data), res) 556 eq(base64.b85decode(data.decode("ascii")), res) 558 self.check_other_types(base64.b85decode, b'cXxL#aCvlSZ*DGca%T', 585 eq(base64.b85decode(b'cmMzZ'), b"x\x00\x00\x00") 586 eq(base64.b85decode(b'cz6H+'), b"xx\x00\x00") 587 eq(base64.b85decode(b'czAdK'), b"xxx\x00") 588 eq(base64.b85decode(b'czAet'), b"xxxx") 589 eq(base64.b85decode(b'czAetcmMzZ'), b"xxxxx\x00\x00\x00") 632 base64.b85decode(b'0000' + bytes([c])) 634 self.assertRaises(ValueError, base64.b85decode, b'|') [all …]
|
/external/python/cpython3/Lib/ |
D | base64.py | 436 def b85decode(b): function
|
/external/python/cpython3/Doc/library/ |
D | base64.rst | 212 .. function:: b85decode(b)
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.4.rst | 653 :func:`~base64.b85encode`, and :func:`~base64.b85decode` provide the ability to
|