HomeSort by relevance Sort by last modified time
    Searched full:b85encode (Results 1 - 4 of 4) sorted by null

  /external/python/cpython3/Lib/test/
test_base64.py 467 eq(base64.b85encode(data), res)
469 self.check_other_types(base64.b85encode, b"www.python.org",
570 eq(base64.b85encode(b"x", pad=True), b'cmMzZ')
571 eq(base64.b85encode(b"xx", pad=True), b'cz6H+')
572 eq(base64.b85encode(b"xxx", pad=True), b'czAdK')
573 eq(base64.b85encode(b"xxxx", pad=True), b'czAet')
574 eq(base64.b85encode(b"xxxxx", pad=True), b'czAetcmMzZ')
  /external/python/cpython3/Lib/
base64.py 21 'b85encode', 'b85decode', 'a85encode', 'a85decode',
287 # Helper function for a85encode and b85encode
429 def b85encode(b, pad=False): function
  /external/python/cpython3/Doc/library/
base64.rst 201 .. function:: b85encode(b, pad=False)
  /external/python/cpython3/Doc/whatsnew/
3.4.rst 653 :func:`~base64.b85encode`, and :func:`~base64.b85decode` provide the ability to
    [all...]

Completed in 480 milliseconds