diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1995-10-10 14:41:03 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1995-10-10 14:41:03 (GMT) |
commit | 06cf5d0d4c30a98226da3fd18c9227c5e7d09fd7 (patch) | |
tree | a0a31b181fa8f382c5da97a23dabdf54adbca8f2 /Doc | |
parent | ab71c3fca0cc827ddac7b0e8148a3e953d1b5728 (diff) | |
download | cpython-06cf5d0d4c30a98226da3fd18c9227c5e7d09fd7.zip cpython-06cf5d0d4c30a98226da3fd18c9227c5e7d09fd7.tar.gz cpython-06cf5d0d4c30a98226da3fd18c9227c5e7d09fd7.tar.bz2 |
Added base64 codec docs
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libbinascii.tex | 12 | ||||
-rw-r--r-- | Doc/libbinascii.tex | 12 |
2 files changed, 24 insertions, 0 deletions
diff --git a/Doc/lib/libbinascii.tex b/Doc/lib/libbinascii.tex index b63ef94..6938eeb 100644 --- a/Doc/lib/libbinascii.tex +++ b/Doc/lib/libbinascii.tex @@ -96,6 +96,18 @@ the converted line, including a newline char. The length of \var{data} should be at most 45. \end{funcdesc} +\begin{funcdesc}{a2b_base64}{string} +Convert a block of base64 data back to binary and return the +binary data. More than one line may be passed at a time. +\end{funcdesc} + +\begin{funcdesc}{b2a_base64}{data} +Convert binary data to a line of ascii characters in base64 coding. +The return value is the converted line, including a newline char. +The length of \var{data} should be at most 57 to adhere to the base64 +standard. +\end{funcdesc} + \begin{funcdesc}{a2b_hqx}{string} Convert binhex4 formatted ascii data to binary, without doing rle-decompression. The string should contain a complete number of diff --git a/Doc/libbinascii.tex b/Doc/libbinascii.tex index b63ef94..6938eeb 100644 --- a/Doc/libbinascii.tex +++ b/Doc/libbinascii.tex @@ -96,6 +96,18 @@ the converted line, including a newline char. The length of \var{data} should be at most 45. \end{funcdesc} +\begin{funcdesc}{a2b_base64}{string} +Convert a block of base64 data back to binary and return the +binary data. More than one line may be passed at a time. +\end{funcdesc} + +\begin{funcdesc}{b2a_base64}{data} +Convert binary data to a line of ascii characters in base64 coding. +The return value is the converted line, including a newline char. +The length of \var{data} should be at most 57 to adhere to the base64 +standard. +\end{funcdesc} + \begin{funcdesc}{a2b_hqx}{string} Convert binhex4 formatted ascii data to binary, without doing rle-decompression. The string should contain a complete number of |