]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added base64 codec docs
authorJack Jansen <jack.jansen@cwi.nl>
Tue, 10 Oct 1995 14:41:03 +0000 (14:41 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Tue, 10 Oct 1995 14:41:03 +0000 (14:41 +0000)
Doc/lib/libbinascii.tex
Doc/libbinascii.tex

index b63ef949c3f56620169dca38f18b40060b0b54b5..6938eeb54c411f4eca2b2eaa8cb00ec7263fd834 100644 (file)
@@ -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
index b63ef949c3f56620169dca38f18b40060b0b54b5..6938eeb54c411f4eca2b2eaa8cb00ec7263fd834 100644 (file)
@@ -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