2002-04-10 18:01:31 -03:00
|
|
|
|
# Copyright (C) 2002 Python Software Foundation
|
|
|
|
|
# Author: che@debian.org (Ben Gertzfield)
|
|
|
|
|
|
|
|
|
|
"""Base64 content transfer encoding per RFCs 2045-2047.
|
|
|
|
|
|
|
|
|
|
This module handles the content transfer encoding method defined in RFC 2045
|
|
|
|
|
to encode arbitrary 8-bit data using the three 8-bit bytes in four 7-bit
|
|
|
|
|
characters encoding known as Base64.
|
|
|
|
|
|
|
|
|
|
It is used in the MIME standards for email to attach images, audio, and text
|
|
|
|
|
using some 8-bit character sets to messages.
|
|
|
|
|
|
|
|
|
|
This module provides an interface to encode and decode both headers and bodies
|
|
|
|
|
with Base64 encoding.
|
|
|
|
|
|
|
|
|
|
RFC 2045 defines a method for including character set information in an
|
|
|
|
|
`encoded-word' in a header. This method is commonly used for 8-bit real names
|
|
|
|
|
in To:, From:, Cc:, etc. fields, as well as Subject: lines.
|
|
|
|
|
|
|
|
|
|
This module does not do the line wrapping or end-of-line character conversion
|
|
|
|
|
necessary for proper internationalized headers; it only does dumb encoding and
|
|
|
|
|
decoding. To deal with the various line wrapping issues, use the email.Header
|
|
|
|
|
module.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
from binascii import b2a_base64, a2b_base64
|
|
|
|
|
from email.Utils import fix_eols
|
|
|
|
|
|
2002-06-02 16:08:31 -03:00
|
|
|
|
try:
|
|
|
|
|
from email._compat22 import _floordiv
|
|
|
|
|
except SyntaxError:
|
|
|
|
|
# Python 2.1 spells integer division differently
|
|
|
|
|
from email._compat21 import _floordiv
|
|
|
|
|
|
|
|
|
|
|
2002-04-10 18:01:31 -03:00
|
|
|
|
CRLF = '\r\n'
|
|
|
|
|
NL = '\n'
|
|
|
|
|
EMPTYSTRING = ''
|
|
|
|
|
|
|
|
|
|
# See also Charset.py
|
|
|
|
|
MISC_LEN = 7
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Helpers
|
|
|
|
|
def base64_len(s):
|
|
|
|
|
"""Return the length of s when it is encoded with base64."""
|
2002-05-23 12:15:30 -03:00
|
|
|
|
groups_of_3, leftover = divmod(len(s), 3)
|
|
|
|
|
# 4 bytes out for each 3 bytes (or nonzero fraction thereof) in.
|
2002-04-10 18:01:31 -03:00
|
|
|
|
# Thanks, Tim!
|
2002-05-23 12:15:30 -03:00
|
|
|
|
n = groups_of_3 * 4
|
|
|
|
|
if leftover:
|
|
|
|
|
n += 4
|
|
|
|
|
return n
|
2002-04-10 18:01:31 -03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def header_encode(header, charset='iso-8859-1', keep_eols=0, maxlinelen=76,
|
|
|
|
|
eol=NL):
|
|
|
|
|
"""Encode a single header line with Base64 encoding in a given charset.
|
2002-05-23 12:15:30 -03:00
|
|
|
|
|
2002-04-10 18:01:31 -03:00
|
|
|
|
Defined in RFC 2045, this Base64 encoding is identical to normal Base64
|
|
|
|
|
encoding, except that each line must be intelligently wrapped (respecting
|
|
|
|
|
the Base64 encoding), and subsequent lines must start with a space.
|
|
|
|
|
|
|
|
|
|
charset names the character set to use to encode the header. It defaults
|
|
|
|
|
to iso-8859-1.
|
|
|
|
|
|
|
|
|
|
End-of-line characters (\\r, \\n, \\r\\n) will be automatically converted
|
|
|
|
|
to the canonical email line separator \\r\\n unless the keep_eols
|
|
|
|
|
parameter is set to true (the default is false).
|
|
|
|
|
|
|
|
|
|
Each line of the header will be terminated in the value of eol, which
|
|
|
|
|
defaults to "\\n". Set this to "\\r\\n" if you are using the result of
|
|
|
|
|
this function directly in email.
|
|
|
|
|
|
|
|
|
|
The resulting string will be in the form:
|
|
|
|
|
|
|
|
|
|
"=?charset?b?WW/5ciBtYXp66XLrIHf8eiBhIGhhbXBzdGHuciBBIFlv+XIgbWF6euly?=\\n
|
|
|
|
|
=?charset?b?6yB3/HogYSBoYW1wc3Rh7nIgQkMgWW/5ciBtYXp66XLrIHf8eiBhIGhh?="
|
2002-05-23 12:15:30 -03:00
|
|
|
|
|
2002-04-10 18:01:31 -03:00
|
|
|
|
with each line wrapped at, at most, maxlinelen characters (defaults to 76
|
|
|
|
|
characters).
|
|
|
|
|
"""
|
|
|
|
|
# Return empty headers unchanged
|
|
|
|
|
if not header:
|
|
|
|
|
return header
|
|
|
|
|
|
|
|
|
|
if not keep_eols:
|
|
|
|
|
header = fix_eols(header)
|
2002-05-23 12:15:30 -03:00
|
|
|
|
|
2002-04-10 18:01:31 -03:00
|
|
|
|
# Base64 encode each line, in encoded chunks no greater than maxlinelen in
|
|
|
|
|
# length, after the RFC chrome is added in.
|
|
|
|
|
base64ed = []
|
|
|
|
|
max_encoded = maxlinelen - len(charset) - MISC_LEN
|
2002-06-02 16:08:31 -03:00
|
|
|
|
max_unencoded = _floordiv(max_encoded * 3, 4)
|
2002-04-10 18:01:31 -03:00
|
|
|
|
|
|
|
|
|
# BAW: Ben's original code used a step of max_unencoded, but I think it
|
|
|
|
|
# ought to be max_encoded. Otherwise, where's max_encoded used? I'm
|
2002-05-23 12:15:30 -03:00
|
|
|
|
# still not sure what the
|
2002-04-10 18:01:31 -03:00
|
|
|
|
for i in range(0, len(header), max_unencoded):
|
|
|
|
|
base64ed.append(b2a_base64(header[i:i+max_unencoded]))
|
|
|
|
|
|
|
|
|
|
# Now add the RFC chrome to each encoded chunk
|
|
|
|
|
lines = []
|
|
|
|
|
for line in base64ed:
|
|
|
|
|
# Ignore the last character of each line if it is a newline
|
|
|
|
|
if line[-1] == NL:
|
|
|
|
|
line = line[:-1]
|
|
|
|
|
# Add the chrome
|
|
|
|
|
lines.append('=?%s?b?%s?=' % (charset, line))
|
|
|
|
|
# Glue the lines together and return it. BAW: should we be able to
|
|
|
|
|
# specify the leading whitespace in the joiner?
|
|
|
|
|
joiner = eol + ' '
|
|
|
|
|
return joiner.join(lines)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def encode(s, binary=1, maxlinelen=76, eol=NL):
|
|
|
|
|
"""Encode a string with base64.
|
|
|
|
|
|
|
|
|
|
Each line will be wrapped at, at most, maxlinelen characters (defaults to
|
|
|
|
|
76 characters).
|
|
|
|
|
|
|
|
|
|
If binary is false, end-of-line characters will be converted to the
|
|
|
|
|
canonical email end-of-line sequence \\r\\n. Otherwise they will be left
|
|
|
|
|
verbatim (this is the default).
|
|
|
|
|
|
|
|
|
|
Each line of encoded text will end with eol, which defaults to "\\n". Set
|
|
|
|
|
this to "\r\n" if you will be using the result of this function directly
|
|
|
|
|
in an email.
|
|
|
|
|
"""
|
|
|
|
|
if not s:
|
|
|
|
|
return s
|
2002-05-23 12:15:30 -03:00
|
|
|
|
|
2002-04-10 18:01:31 -03:00
|
|
|
|
if not binary:
|
|
|
|
|
s = fix_eols(s)
|
2002-05-23 12:15:30 -03:00
|
|
|
|
|
2002-04-10 18:01:31 -03:00
|
|
|
|
encvec = []
|
2002-06-02 16:08:31 -03:00
|
|
|
|
max_unencoded = _floordiv(maxlinelen * 3, 4)
|
2002-04-10 18:01:31 -03:00
|
|
|
|
for i in range(0, len(s), max_unencoded):
|
|
|
|
|
# BAW: should encode() inherit b2a_base64()'s dubious behavior in
|
|
|
|
|
# adding a newline to the encoded string?
|
|
|
|
|
enc = b2a_base64(s[i:i + max_unencoded])
|
|
|
|
|
if enc[-1] == NL and eol <> NL:
|
|
|
|
|
enc = enc[:-1] + eol
|
|
|
|
|
encvec.append(enc)
|
|
|
|
|
return EMPTYSTRING.join(encvec)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# For convenience and backwards compatibility w/ standard base64 module
|
|
|
|
|
body_encode = encode
|
|
|
|
|
encodestring = encode
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def decode(s, convert_eols=None):
|
|
|
|
|
"""Decode a raw base64 string.
|
|
|
|
|
|
|
|
|
|
If convert_eols is set to a string value, all canonical email linefeeds,
|
|
|
|
|
e.g. "\\r\\n", in the decoded text will be converted to the value of
|
|
|
|
|
convert_eols. os.linesep is a good choice for convert_eols if you are
|
|
|
|
|
decoding a text attachment.
|
|
|
|
|
|
|
|
|
|
This function does not parse a full MIME header value encoded with
|
|
|
|
|
base64 (like =?iso-8895-1?b?bmloISBuaWgh?=) -- please use the high
|
|
|
|
|
level email.Header class for that functionality.
|
|
|
|
|
"""
|
|
|
|
|
if not s:
|
|
|
|
|
return s
|
2002-05-23 12:15:30 -03:00
|
|
|
|
|
2002-04-10 18:01:31 -03:00
|
|
|
|
dec = a2b_base64(s)
|
|
|
|
|
if convert_eols:
|
|
|
|
|
return dec.replace(CRLF, convert_eols)
|
|
|
|
|
return dec
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# For convenience and backwards compatibility w/ standard base64 module
|
|
|
|
|
body_decode = decode
|
|
|
|
|
decodestring = decode
|