Lines Matching refs:base64
1 :mod:`base64` --- RFC 3548: Base16, Base32, Base64 Data Encodings
4 .. module:: base64
9 pair: base64; encoding
10 single: MIME; base64 encoding
137 Decode the string *s*, which must contain one or more lines of base64 encoded
143 Encode the contents of the *input* file and write the resulting base64 encoded
153 string containing one or more lines of base64-encoded data.
155 base64-encoded data always including an extra trailing newline (``'\n'``).
159 >>> import base64
160 >>> encoded = base64.b64encode('data to be encoded')
163 >>> data = base64.b64decode(encoded)
175 base64 encoding.