Barry Warsaw | 409a4c0 | 2002-04-10 21:01:31 +0000 | [diff] [blame] | 1 | # Copyright (C) 2002 Python Software Foundation |
| 2 | # Author: che@debian.org (Ben Gertzfield) |
| 3 | |
| 4 | """Base64 content transfer encoding per RFCs 2045-2047. |
| 5 | |
| 6 | This module handles the content transfer encoding method defined in RFC 2045 |
| 7 | to encode arbitrary 8-bit data using the three 8-bit bytes in four 7-bit |
| 8 | characters encoding known as Base64. |
| 9 | |
| 10 | It is used in the MIME standards for email to attach images, audio, and text |
| 11 | using some 8-bit character sets to messages. |
| 12 | |
| 13 | This module provides an interface to encode and decode both headers and bodies |
| 14 | with Base64 encoding. |
| 15 | |
| 16 | RFC 2045 defines a method for including character set information in an |
| 17 | `encoded-word' in a header. This method is commonly used for 8-bit real names |
| 18 | in To:, From:, Cc:, etc. fields, as well as Subject: lines. |
| 19 | |
| 20 | This module does not do the line wrapping or end-of-line character conversion |
| 21 | necessary for proper internationalized headers; it only does dumb encoding and |
| 22 | decoding. To deal with the various line wrapping issues, use the email.Header |
| 23 | module. |
| 24 | """ |
| 25 | |
| 26 | import re |
| 27 | from binascii import b2a_base64, a2b_base64 |
| 28 | from email.Utils import fix_eols |
| 29 | |
| 30 | CRLF = '\r\n' |
| 31 | NL = '\n' |
| 32 | EMPTYSTRING = '' |
| 33 | |
| 34 | # See also Charset.py |
| 35 | MISC_LEN = 7 |
| 36 | |
| 37 | |
| 38 | |
| 39 | # Helpers |
| 40 | def base64_len(s): |
| 41 | """Return the length of s when it is encoded with base64.""" |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 42 | groups_of_3, leftover = divmod(len(s), 3) |
| 43 | # 4 bytes out for each 3 bytes (or nonzero fraction thereof) in. |
Barry Warsaw | 409a4c0 | 2002-04-10 21:01:31 +0000 | [diff] [blame] | 44 | # Thanks, Tim! |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 45 | n = groups_of_3 * 4 |
| 46 | if leftover: |
| 47 | n += 4 |
| 48 | return n |
Barry Warsaw | 409a4c0 | 2002-04-10 21:01:31 +0000 | [diff] [blame] | 49 | |
| 50 | |
| 51 | |
Barry Warsaw | c202d93 | 2002-09-28 21:02:51 +0000 | [diff] [blame] | 52 | def header_encode(header, charset='iso-8859-1', keep_eols=False, |
| 53 | maxlinelen=76, eol=NL): |
Barry Warsaw | 409a4c0 | 2002-04-10 21:01:31 +0000 | [diff] [blame] | 54 | """Encode a single header line with Base64 encoding in a given charset. |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 55 | |
Barry Warsaw | 409a4c0 | 2002-04-10 21:01:31 +0000 | [diff] [blame] | 56 | Defined in RFC 2045, this Base64 encoding is identical to normal Base64 |
| 57 | encoding, except that each line must be intelligently wrapped (respecting |
| 58 | the Base64 encoding), and subsequent lines must start with a space. |
| 59 | |
| 60 | charset names the character set to use to encode the header. It defaults |
| 61 | to iso-8859-1. |
| 62 | |
| 63 | End-of-line characters (\\r, \\n, \\r\\n) will be automatically converted |
| 64 | to the canonical email line separator \\r\\n unless the keep_eols |
Barry Warsaw | c202d93 | 2002-09-28 21:02:51 +0000 | [diff] [blame] | 65 | parameter is True (the default is False). |
Barry Warsaw | 409a4c0 | 2002-04-10 21:01:31 +0000 | [diff] [blame] | 66 | |
| 67 | Each line of the header will be terminated in the value of eol, which |
| 68 | defaults to "\\n". Set this to "\\r\\n" if you are using the result of |
| 69 | this function directly in email. |
| 70 | |
| 71 | The resulting string will be in the form: |
| 72 | |
| 73 | "=?charset?b?WW/5ciBtYXp66XLrIHf8eiBhIGhhbXBzdGHuciBBIFlv+XIgbWF6euly?=\\n |
| 74 | =?charset?b?6yB3/HogYSBoYW1wc3Rh7nIgQkMgWW/5ciBtYXp66XLrIHf8eiBhIGhh?=" |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 75 | |
Barry Warsaw | 409a4c0 | 2002-04-10 21:01:31 +0000 | [diff] [blame] | 76 | with each line wrapped at, at most, maxlinelen characters (defaults to 76 |
| 77 | characters). |
| 78 | """ |
| 79 | # Return empty headers unchanged |
| 80 | if not header: |
| 81 | return header |
| 82 | |
| 83 | if not keep_eols: |
| 84 | header = fix_eols(header) |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 85 | |
Barry Warsaw | 409a4c0 | 2002-04-10 21:01:31 +0000 | [diff] [blame] | 86 | # Base64 encode each line, in encoded chunks no greater than maxlinelen in |
| 87 | # length, after the RFC chrome is added in. |
| 88 | base64ed = [] |
| 89 | max_encoded = maxlinelen - len(charset) - MISC_LEN |
Barry Warsaw | 24f7976 | 2004-05-09 03:55:11 +0000 | [diff] [blame^] | 90 | max_unencoded = max_encoded * 3 // 4 |
Barry Warsaw | 409a4c0 | 2002-04-10 21:01:31 +0000 | [diff] [blame] | 91 | |
Barry Warsaw | 409a4c0 | 2002-04-10 21:01:31 +0000 | [diff] [blame] | 92 | for i in range(0, len(header), max_unencoded): |
| 93 | base64ed.append(b2a_base64(header[i:i+max_unencoded])) |
| 94 | |
| 95 | # Now add the RFC chrome to each encoded chunk |
| 96 | lines = [] |
| 97 | for line in base64ed: |
| 98 | # Ignore the last character of each line if it is a newline |
Barry Warsaw | c202d93 | 2002-09-28 21:02:51 +0000 | [diff] [blame] | 99 | if line.endswith(NL): |
Barry Warsaw | 409a4c0 | 2002-04-10 21:01:31 +0000 | [diff] [blame] | 100 | line = line[:-1] |
| 101 | # Add the chrome |
| 102 | lines.append('=?%s?b?%s?=' % (charset, line)) |
| 103 | # Glue the lines together and return it. BAW: should we be able to |
| 104 | # specify the leading whitespace in the joiner? |
| 105 | joiner = eol + ' ' |
| 106 | return joiner.join(lines) |
| 107 | |
| 108 | |
| 109 | |
Barry Warsaw | c202d93 | 2002-09-28 21:02:51 +0000 | [diff] [blame] | 110 | def encode(s, binary=True, maxlinelen=76, eol=NL): |
Barry Warsaw | 409a4c0 | 2002-04-10 21:01:31 +0000 | [diff] [blame] | 111 | """Encode a string with base64. |
| 112 | |
| 113 | Each line will be wrapped at, at most, maxlinelen characters (defaults to |
| 114 | 76 characters). |
| 115 | |
Barry Warsaw | c202d93 | 2002-09-28 21:02:51 +0000 | [diff] [blame] | 116 | If binary is False, end-of-line characters will be converted to the |
Barry Warsaw | 409a4c0 | 2002-04-10 21:01:31 +0000 | [diff] [blame] | 117 | canonical email end-of-line sequence \\r\\n. Otherwise they will be left |
| 118 | verbatim (this is the default). |
| 119 | |
| 120 | Each line of encoded text will end with eol, which defaults to "\\n". Set |
| 121 | this to "\r\n" if you will be using the result of this function directly |
| 122 | in an email. |
| 123 | """ |
| 124 | if not s: |
| 125 | return s |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 126 | |
Barry Warsaw | 409a4c0 | 2002-04-10 21:01:31 +0000 | [diff] [blame] | 127 | if not binary: |
| 128 | s = fix_eols(s) |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 129 | |
Barry Warsaw | 409a4c0 | 2002-04-10 21:01:31 +0000 | [diff] [blame] | 130 | encvec = [] |
Barry Warsaw | 24f7976 | 2004-05-09 03:55:11 +0000 | [diff] [blame^] | 131 | max_unencoded = maxlinelen * 3 // 4 |
Barry Warsaw | 409a4c0 | 2002-04-10 21:01:31 +0000 | [diff] [blame] | 132 | for i in range(0, len(s), max_unencoded): |
| 133 | # BAW: should encode() inherit b2a_base64()'s dubious behavior in |
| 134 | # adding a newline to the encoded string? |
| 135 | enc = b2a_base64(s[i:i + max_unencoded]) |
Barry Warsaw | c202d93 | 2002-09-28 21:02:51 +0000 | [diff] [blame] | 136 | if enc.endswith(NL) and eol <> NL: |
Barry Warsaw | 409a4c0 | 2002-04-10 21:01:31 +0000 | [diff] [blame] | 137 | enc = enc[:-1] + eol |
| 138 | encvec.append(enc) |
| 139 | return EMPTYSTRING.join(encvec) |
| 140 | |
| 141 | |
| 142 | # For convenience and backwards compatibility w/ standard base64 module |
| 143 | body_encode = encode |
| 144 | encodestring = encode |
| 145 | |
| 146 | |
| 147 | |
| 148 | def decode(s, convert_eols=None): |
| 149 | """Decode a raw base64 string. |
| 150 | |
| 151 | If convert_eols is set to a string value, all canonical email linefeeds, |
| 152 | e.g. "\\r\\n", in the decoded text will be converted to the value of |
| 153 | convert_eols. os.linesep is a good choice for convert_eols if you are |
| 154 | decoding a text attachment. |
| 155 | |
| 156 | This function does not parse a full MIME header value encoded with |
| 157 | base64 (like =?iso-8895-1?b?bmloISBuaWgh?=) -- please use the high |
| 158 | level email.Header class for that functionality. |
| 159 | """ |
| 160 | if not s: |
| 161 | return s |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 162 | |
Barry Warsaw | 409a4c0 | 2002-04-10 21:01:31 +0000 | [diff] [blame] | 163 | dec = a2b_base64(s) |
| 164 | if convert_eols: |
| 165 | return dec.replace(CRLF, convert_eols) |
| 166 | return dec |
| 167 | |
| 168 | |
| 169 | # For convenience and backwards compatibility w/ standard base64 module |
| 170 | body_decode = decode |
| 171 | decodestring = decode |