Lines Matching full:base64
24 BASE64 = 2 # Base64 variable
25 SHORTEST = 3 # the shorter of QP and base64, but only for headers
57 'big5': (BASE64, BASE64, None),
58 'gb2312': (BASE64, BASE64, None),
59 'euc-jp': (BASE64, None, 'iso-2022-jp'),
60 'shift_jis': (BASE64, None, 'iso-2022-jp'),
61 'iso-2022-jp': (BASE64, None, None),
62 'koi8-r': (BASE64, BASE64, None),
63 'utf-8': (SHORTEST, BASE64, 'utf-8'),
116 quoted-printable, Charset.BASE64 for base64 encoding, Charset.SHORTEST for
117 the shortest of qp or base64 encoding, or None for no encoding. SHORTEST
177 Certain character sets must be encoded with quoted-printable or base64
188 Charset.QP (for quoted-printable), Charset.BASE64 (for
189 base64 encoding), or Charset.SHORTEST for the shortest of
190 QP or BASE64 encoding. Otherwise, it will be None.
230 (SHORTEST, BASE64, None))
253 This is either the string `quoted-printable' or `base64' depending on
260 Returns "base64" if self.body_encoding is BASE64.
266 elif self.body_encoding == BASE64:
267 return 'base64'
282 The type of encoding (base64 or quoted-printable) will be based on
361 if self.header_encoding == BASE64:
378 The type of encoding (base64 or quoted-printable) will be based on
386 if self.body_encoding is BASE64: