Home
last modified time | relevance | path

Searched refs:b85decode (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_base64.py555 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/
Dbase64.py436 def b85decode(b): function
/external/python/cpython3/Doc/library/
Dbase64.rst212 .. function:: b85decode(b)
/external/python/cpython3/Doc/whatsnew/
D3.4.rst653 :func:`~base64.b85encode`, and :func:`~base64.b85decode` provide the ability to