| 
									
										
										
										
											2007-08-30 01:15:14 +00:00
										 |  |  |  | # Copyright (C) 2002-2007 Python Software Foundation | 
					
						
							|  |  |  |  | # Author: Ben Gertzfield | 
					
						
							|  |  |  |  | # Contact: email-sig@python.org | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | """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 | 
					
						
							| 
									
										
										
										
											2009-07-12 16:43:19 +00:00
										 |  |  |  | decoding.  To deal with the various line wrapping issues, use the email.header | 
					
						
							| 
									
										
										
										
											2007-08-30 01:15:14 +00:00
										 |  |  |  | module. | 
					
						
							|  |  |  |  | """
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | __all__ = [ | 
					
						
							|  |  |  |  |     'body_decode', | 
					
						
							|  |  |  |  |     'body_encode', | 
					
						
							|  |  |  |  |     'decode', | 
					
						
							|  |  |  |  |     'decodestring', | 
					
						
							|  |  |  |  |     'header_encode', | 
					
						
							| 
									
										
										
										
											2007-08-30 03:46:43 +00:00
										 |  |  |  |     'header_length', | 
					
						
							| 
									
										
										
										
											2007-08-30 01:15:14 +00:00
										 |  |  |  |     ] | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-30 03:46:43 +00:00
										 |  |  |  | from base64 import b64encode | 
					
						
							| 
									
										
										
										
											2007-08-30 01:15:14 +00:00
										 |  |  |  | from binascii import b2a_base64, a2b_base64 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | CRLF = '\r\n' | 
					
						
							|  |  |  |  | NL = '\n' | 
					
						
							|  |  |  |  | EMPTYSTRING = '' | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | # See also Charset.py | 
					
						
							|  |  |  |  | MISC_LEN = 7 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |  | 
					
						
							|  |  |  |  | # Helpers | 
					
						
							| 
									
										
										
										
											2007-08-30 03:46:43 +00:00
										 |  |  |  | def header_length(bytearray): | 
					
						
							| 
									
										
										
										
											2007-08-30 01:15:14 +00:00
										 |  |  |  |     """Return the length of s when it is encoded with base64.""" | 
					
						
							| 
									
										
										
										
											2007-08-30 03:46:43 +00:00
										 |  |  |  |     groups_of_3, leftover = divmod(len(bytearray), 3) | 
					
						
							| 
									
										
										
										
											2007-08-30 01:15:14 +00:00
										 |  |  |  |     # 4 bytes out for each 3 bytes (or nonzero fraction thereof) in. | 
					
						
							|  |  |  |  |     n = groups_of_3 * 4 | 
					
						
							|  |  |  |  |     if leftover: | 
					
						
							|  |  |  |  |         n += 4 | 
					
						
							|  |  |  |  |     return n | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |  | 
					
						
							| 
									
										
										
										
											2007-08-30 03:46:43 +00:00
										 |  |  |  | def header_encode(header_bytes, charset='iso-8859-1'): | 
					
						
							| 
									
										
										
										
											2007-08-30 01:15:14 +00:00
										 |  |  |  |     """Encode a single header line with Base64 encoding in a given charset.
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     charset names the character set to use to encode the header.  It defaults | 
					
						
							| 
									
										
										
										
											2007-08-30 03:46:43 +00:00
										 |  |  |  |     to iso-8859-1.  Base64 encoding is defined in RFC 2045. | 
					
						
							| 
									
										
										
										
											2007-08-30 01:15:14 +00:00
										 |  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2007-08-30 03:46:43 +00:00
										 |  |  |  |     if not header_bytes: | 
					
						
							| 
									
										
										
										
											2008-05-03 04:39:38 +00:00
										 |  |  |  |         return "" | 
					
						
							|  |  |  |  |     if isinstance(header_bytes, str): | 
					
						
							|  |  |  |  |         header_bytes = header_bytes.encode(charset) | 
					
						
							| 
									
										
										
										
											2007-11-06 21:34:58 +00:00
										 |  |  |  |     encoded = b64encode(header_bytes).decode("ascii") | 
					
						
							| 
									
										
										
										
											2007-08-30 03:46:43 +00:00
										 |  |  |  |     return '=?%s?b?%s?=' % (charset, encoded) | 
					
						
							| 
									
										
										
										
											2007-08-30 01:15:14 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |  | 
					
						
							| 
									
										
										
										
											2007-08-30 03:46:43 +00:00
										 |  |  |  | def body_encode(s, maxlinelen=76, eol=NL): | 
					
						
							| 
									
										
										
										
											2010-07-27 21:20:15 +00:00
										 |  |  |  |     r"""Encode a string with base64.
 | 
					
						
							| 
									
										
										
										
											2007-08-30 01:15:14 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |     Each line will be wrapped at, at most, maxlinelen characters (defaults to | 
					
						
							|  |  |  |  |     76 characters). | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-27 21:20:15 +00:00
										 |  |  |  |     Each line of encoded text will end with eol, which defaults to "\n".  Set | 
					
						
							| 
									
										
										
										
											2007-08-30 01:15:14 +00:00
										 |  |  |  |     this to "\r\n" if you will be using the result of this function directly | 
					
						
							|  |  |  |  |     in an email. | 
					
						
							|  |  |  |  |     """
 | 
					
						
							|  |  |  |  |     if not s: | 
					
						
							|  |  |  |  |         return s | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     encvec = [] | 
					
						
							|  |  |  |  |     max_unencoded = maxlinelen * 3 // 4 | 
					
						
							|  |  |  |  |     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? | 
					
						
							| 
									
										
										
										
											2007-11-06 21:34:58 +00:00
										 |  |  |  |         enc = b2a_base64(s[i:i + max_unencoded]).decode("ascii") | 
					
						
							| 
									
										
										
										
											2007-08-30 01:15:14 +00:00
										 |  |  |  |         if enc.endswith(NL) and eol != NL: | 
					
						
							|  |  |  |  |             enc = enc[:-1] + eol | 
					
						
							|  |  |  |  |         encvec.append(enc) | 
					
						
							|  |  |  |  |     return EMPTYSTRING.join(encvec) | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |  | 
					
						
							| 
									
										
										
										
											2007-08-30 14:28:55 +00:00
										 |  |  |  | def decode(string): | 
					
						
							| 
									
										
										
										
											2007-08-30 01:15:14 +00:00
										 |  |  |  |     """Decode a raw base64 string, returning a bytes object.
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-30 03:46:43 +00:00
										 |  |  |  |     This function does not parse a full MIME header value encoded with | 
					
						
							| 
									
										
										
										
											2016-08-10 05:25:16 +00:00
										 |  |  |  |     base64 (like =?iso-8859-1?b?bmloISBuaWgh?=) -- please use the high | 
					
						
							| 
									
										
										
										
											2009-07-12 16:43:19 +00:00
										 |  |  |  |     level email.header class for that functionality. | 
					
						
							| 
									
										
										
										
											2007-08-30 01:15:14 +00:00
										 |  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2007-08-30 14:28:55 +00:00
										 |  |  |  |     if not string: | 
					
						
							|  |  |  |  |         return bytes() | 
					
						
							|  |  |  |  |     elif isinstance(string, str): | 
					
						
							|  |  |  |  |         return a2b_base64(string.encode('raw-unicode-escape')) | 
					
						
							|  |  |  |  |     else: | 
					
						
							| 
									
										
										
										
											2009-05-29 20:42:47 +00:00
										 |  |  |  |         return a2b_base64(string) | 
					
						
							| 
									
										
										
										
											2007-08-30 01:15:14 +00:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | # For convenience and backwards compatibility w/ standard base64 module | 
					
						
							|  |  |  |  | body_decode = decode | 
					
						
							|  |  |  |  | decodestring = decode |