ciphers.base85 ============== .. py:module:: ciphers.base85 .. autoapi-nested-parse:: Base85 (Ascii85) encoding and decoding https://en.wikipedia.org/wiki/Ascii85 Functions --------- .. autoapisummary:: ciphers.base85._base10_to_85 ciphers.base85._base85_to_10 ciphers.base85.ascii85_decode ciphers.base85.ascii85_encode Module Contents --------------- .. py:function:: _base10_to_85(d: int) -> str .. py:function:: _base85_to_10(digits: list) -> int .. py:function:: ascii85_decode(data: bytes) -> bytes >>> ascii85_decode(b"") b'' >>> ascii85_decode(b"0etOA2#") b'12345' >>> ascii85_decode(b"@UX=h+?24") b'base 85' .. py:function:: ascii85_encode(data: bytes) -> bytes >>> ascii85_encode(b"") b'' >>> ascii85_encode(b"12345") b'0etOA2#' >>> ascii85_encode(b"base 85") b'@UX=h+?24'