base64
¶
RFC 3548: Base16, Base32, Base64 Data Encodings
Functions¶
b16decode (s[, casefold]) |
Decode a Base16 encoded string. |
b16encode (s) |
Encode a string using Base16. |
b32decode (s[, casefold, map01]) |
Decode a Base32 encoded string. |
b32encode (s) |
Encode a string using Base32. |
b64decode (s[, altchars]) |
Decode a Base64 encoded string. |
b64encode (s[, altchars]) |
Encode a string using Base64. |
decode (input, output) |
Decode a file. |
decodestring (s) |
Decode a string. |
encode (input, output) |
Encode a file. |
encodestring (s) |
Encode a string into multiple lines of base-64 data. |
standard_b64decode (s) |
Decode a string encoded with the standard Base64 alphabet. |
standard_b64encode (s) |
Encode a string using the standard Base64 alphabet. |
test () |
Small test program |
test1 () |
|
urlsafe_b64decode (s) |
Decode a string using the URL- and filesystem-safe Base64 alphabet. |
urlsafe_b64encode (s) |
Encode a string using the URL- and filesystem-safe Base64 alphabet. |