blob: edcc4bea601131005a554c0cc43b03dad0308da6 [file] [log] [blame]
Benjamin Peterson90f5ba52010-03-11 22:53:45 +00001#! /usr/bin/env python3
Guido van Rossumaa925a51997-04-02 05:47:39 +00002
Barry Warsaw4c904d12004-01-04 01:12:26 +00003"""RFC 3548: Base16, Base32, Base64 Data Encodings"""
Guido van Rossum4acc25b2000-02-02 15:10:15 +00004
Barry Warsaw4c904d12004-01-04 01:12:26 +00005# Modified 04-Oct-1995 by Jack Jansen to use binascii module
6# Modified 30-Dec-2003 by Barry Warsaw to add full RFC 3548 support
Guido van Rossum4581ae52007-05-22 21:56:47 +00007# Modified 22-May-2007 by Guido van Rossum to use bytes everywhere
Jack Jansen951213e1995-10-04 16:39:20 +00008
Barry Warsaw4c904d12004-01-04 01:12:26 +00009import re
10import struct
Jack Jansen951213e1995-10-04 16:39:20 +000011import binascii
12
Barry Warsaw4c904d12004-01-04 01:12:26 +000013
14__all__ = [
15 # Legacy interface exports traditional RFC 1521 Base64 encodings
Georg Brandlb54d8012009-06-04 09:11:51 +000016 'encode', 'decode', 'encodebytes', 'decodebytes',
Barry Warsaw4c904d12004-01-04 01:12:26 +000017 # Generalized interface for other encodings
18 'b64encode', 'b64decode', 'b32encode', 'b32decode',
19 'b16encode', 'b16decode',
20 # Standard Base64 encoding
21 'standard_b64encode', 'standard_b64decode',
22 # Some common Base64 alternatives. As referenced by RFC 3458, see thread
23 # starting at:
24 #
25 # http://zgp.org/pipermail/p2p-hackers/2001-September/000316.html
Barry Warsaw4c904d12004-01-04 01:12:26 +000026 'urlsafe_b64encode', 'urlsafe_b64decode',
27 ]
28
Barry Warsaw4c904d12004-01-04 01:12:26 +000029
Guido van Rossum254348e2007-11-21 19:29:53 +000030bytes_types = (bytes, bytearray) # Types acceptable as binary data
Guido van Rossum98297ee2007-11-06 21:34:58 +000031
Antoine Pitrouea6b4d52012-02-20 19:30:23 +010032def _bytes_from_decode_data(s):
33 if isinstance(s, str):
34 try:
35 return s.encode('ascii')
36 except UnicodeEncodeError:
37 raise ValueError('string argument should contain only ASCII characters')
38 elif isinstance(s, bytes_types):
39 return s
40 else:
41 raise TypeError("argument should be bytes or ASCII string, not %s" % s.__class__.__name__)
Guido van Rossum98297ee2007-11-06 21:34:58 +000042
Barry Warsaw4c904d12004-01-04 01:12:26 +000043def _translate(s, altchars):
Guido van Rossum254348e2007-11-21 19:29:53 +000044 if not isinstance(s, bytes_types):
Guido van Rossum98b349f2007-08-27 21:47:52 +000045 raise TypeError("expected bytes, not %s" % s.__class__.__name__)
Guido van Rossum254348e2007-11-21 19:29:53 +000046 translation = bytearray(range(256))
Barry Warsaw4c904d12004-01-04 01:12:26 +000047 for k, v in altchars.items():
Guido van Rossum4581ae52007-05-22 21:56:47 +000048 translation[ord(k)] = v[0]
49 return s.translate(translation)
Barry Warsaw4c904d12004-01-04 01:12:26 +000050
51
Antoine Pitroufd036452008-08-19 17:56:33 +000052
Barry Warsaw4c904d12004-01-04 01:12:26 +000053# Base64 encoding/decoding uses binascii
54
55def b64encode(s, altchars=None):
Guido van Rossum4581ae52007-05-22 21:56:47 +000056 """Encode a byte string using Base64.
Barry Warsaw4c904d12004-01-04 01:12:26 +000057
Guido van Rossum4581ae52007-05-22 21:56:47 +000058 s is the byte string to encode. Optional altchars must be a byte
59 string of length 2 which specifies an alternative alphabet for the
60 '+' and '/' characters. This allows an application to
61 e.g. generate url or filesystem safe Base64 strings.
Barry Warsaw4c904d12004-01-04 01:12:26 +000062
Guido van Rossum4581ae52007-05-22 21:56:47 +000063 The encoded byte string is returned.
Barry Warsaw4c904d12004-01-04 01:12:26 +000064 """
Guido van Rossum254348e2007-11-21 19:29:53 +000065 if not isinstance(s, bytes_types):
Alexandre Vassalotti5209857f2008-05-03 04:39:38 +000066 raise TypeError("expected bytes, not %s" % s.__class__.__name__)
Barry Warsaw4c904d12004-01-04 01:12:26 +000067 # Strip off the trailing newline
68 encoded = binascii.b2a_base64(s)[:-1]
69 if altchars is not None:
Guido van Rossum254348e2007-11-21 19:29:53 +000070 if not isinstance(altchars, bytes_types):
Alexandre Vassalotti56292682009-06-29 01:13:41 +000071 raise TypeError("expected bytes, not %s"
72 % altchars.__class__.__name__)
Guido van Rossum4581ae52007-05-22 21:56:47 +000073 assert len(altchars) == 2, repr(altchars)
74 return _translate(encoded, {'+': altchars[0:1], '/': altchars[1:2]})
Barry Warsaw4c904d12004-01-04 01:12:26 +000075 return encoded
76
77
R. David Murray64951362010-11-11 20:09:20 +000078def b64decode(s, altchars=None, validate=False):
Guido van Rossum4581ae52007-05-22 21:56:47 +000079 """Decode a Base64 encoded byte string.
Barry Warsaw4c904d12004-01-04 01:12:26 +000080
Guido van Rossum4581ae52007-05-22 21:56:47 +000081 s is the byte string to decode. Optional altchars must be a
82 string of length 2 which specifies the alternative alphabet used
83 instead of the '+' and '/' characters.
Barry Warsaw4c904d12004-01-04 01:12:26 +000084
R. David Murray64951362010-11-11 20:09:20 +000085 The decoded string is returned. A binascii.Error is raised if s is
86 incorrectly padded.
87
88 If validate is False (the default), non-base64-alphabet characters are
89 discarded prior to the padding check. If validate is True,
90 non-base64-alphabet characters in the input result in a binascii.Error.
Barry Warsaw4c904d12004-01-04 01:12:26 +000091 """
Antoine Pitrouea6b4d52012-02-20 19:30:23 +010092 s = _bytes_from_decode_data(s)
Barry Warsaw4c904d12004-01-04 01:12:26 +000093 if altchars is not None:
Antoine Pitrouea6b4d52012-02-20 19:30:23 +010094 altchars = _bytes_from_decode_data(altchars)
Guido van Rossum4581ae52007-05-22 21:56:47 +000095 assert len(altchars) == 2, repr(altchars)
96 s = _translate(s, {chr(altchars[0]): b'+', chr(altchars[1]): b'/'})
R. David Murray64951362010-11-11 20:09:20 +000097 if validate and not re.match(b'^[A-Za-z0-9+/]*={0,2}$', s):
98 raise binascii.Error('Non-base64 digit found')
Guido van Rossum4581ae52007-05-22 21:56:47 +000099 return binascii.a2b_base64(s)
Barry Warsaw4c904d12004-01-04 01:12:26 +0000100
101
102def standard_b64encode(s):
Guido van Rossum4581ae52007-05-22 21:56:47 +0000103 """Encode a byte string using the standard Base64 alphabet.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000104
Guido van Rossum4581ae52007-05-22 21:56:47 +0000105 s is the byte string to encode. The encoded byte string is returned.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000106 """
107 return b64encode(s)
108
109def standard_b64decode(s):
Guido van Rossum4581ae52007-05-22 21:56:47 +0000110 """Decode a byte string encoded with the standard Base64 alphabet.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000111
Guido van Rossum4581ae52007-05-22 21:56:47 +0000112 s is the byte string to decode. The decoded byte string is
113 returned. binascii.Error is raised if the input is incorrectly
114 padded or if there are non-alphabet characters present in the
115 input.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000116 """
117 return b64decode(s)
118
119def urlsafe_b64encode(s):
Guido van Rossum4581ae52007-05-22 21:56:47 +0000120 """Encode a byte string using a url-safe Base64 alphabet.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000121
Guido van Rossum4581ae52007-05-22 21:56:47 +0000122 s is the byte string to encode. The encoded byte string is
123 returned. The alphabet uses '-' instead of '+' and '_' instead of
124 '/'.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000125 """
Guido van Rossum4581ae52007-05-22 21:56:47 +0000126 return b64encode(s, b'-_')
Barry Warsaw4c904d12004-01-04 01:12:26 +0000127
128def urlsafe_b64decode(s):
Guido van Rossum4581ae52007-05-22 21:56:47 +0000129 """Decode a byte string encoded with the standard Base64 alphabet.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000130
Guido van Rossum4581ae52007-05-22 21:56:47 +0000131 s is the byte string to decode. The decoded byte string is
132 returned. binascii.Error is raised if the input is incorrectly
133 padded or if there are non-alphabet characters present in the
134 input.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000135
136 The alphabet uses '-' instead of '+' and '_' instead of '/'.
137 """
Guido van Rossum4581ae52007-05-22 21:56:47 +0000138 return b64decode(s, b'-_')
Barry Warsaw4c904d12004-01-04 01:12:26 +0000139
140
Antoine Pitroufd036452008-08-19 17:56:33 +0000141
Barry Warsaw4c904d12004-01-04 01:12:26 +0000142# Base32 encoding/decoding must be done in Python
143_b32alphabet = {
Guido van Rossum4581ae52007-05-22 21:56:47 +0000144 0: b'A', 9: b'J', 18: b'S', 27: b'3',
145 1: b'B', 10: b'K', 19: b'T', 28: b'4',
146 2: b'C', 11: b'L', 20: b'U', 29: b'5',
147 3: b'D', 12: b'M', 21: b'V', 30: b'6',
148 4: b'E', 13: b'N', 22: b'W', 31: b'7',
149 5: b'F', 14: b'O', 23: b'X',
150 6: b'G', 15: b'P', 24: b'Y',
151 7: b'H', 16: b'Q', 25: b'Z',
152 8: b'I', 17: b'R', 26: b'2',
Barry Warsaw4c904d12004-01-04 01:12:26 +0000153 }
154
Guido van Rossum4581ae52007-05-22 21:56:47 +0000155_b32tab = [v[0] for k, v in sorted(_b32alphabet.items())]
156_b32rev = dict([(v[0], k) for k, v in _b32alphabet.items()])
Barry Warsaw4c904d12004-01-04 01:12:26 +0000157
158
159def b32encode(s):
Guido van Rossum4581ae52007-05-22 21:56:47 +0000160 """Encode a byte string using Base32.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000161
Guido van Rossum4581ae52007-05-22 21:56:47 +0000162 s is the byte string to encode. The encoded byte string is returned.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000163 """
Guido van Rossum254348e2007-11-21 19:29:53 +0000164 if not isinstance(s, bytes_types):
Alexandre Vassalotti5209857f2008-05-03 04:39:38 +0000165 raise TypeError("expected bytes, not %s" % s.__class__.__name__)
Barry Warsaw4c904d12004-01-04 01:12:26 +0000166 quanta, leftover = divmod(len(s), 5)
167 # Pad the last quantum with zero bits if necessary
168 if leftover:
Guido van Rossum4581ae52007-05-22 21:56:47 +0000169 s = s + bytes(5 - leftover) # Don't use += !
Barry Warsaw4c904d12004-01-04 01:12:26 +0000170 quanta += 1
Guido van Rossum4581ae52007-05-22 21:56:47 +0000171 encoded = bytes()
Barry Warsaw4c904d12004-01-04 01:12:26 +0000172 for i in range(quanta):
173 # c1 and c2 are 16 bits wide, c3 is 8 bits wide. The intent of this
174 # code is to process the 40 bits in units of 5 bits. So we take the 1
175 # leftover bit of c1 and tack it onto c2. Then we take the 2 leftover
176 # bits of c2 and tack them onto c3. The shifts and masks are intended
177 # to give us values of exactly 5 bits in width.
178 c1, c2, c3 = struct.unpack('!HHB', s[i*5:(i+1)*5])
179 c2 += (c1 & 1) << 16 # 17 bits wide
180 c3 += (c2 & 3) << 8 # 10 bits wide
Guido van Rossum4581ae52007-05-22 21:56:47 +0000181 encoded += bytes([_b32tab[c1 >> 11], # bits 1 - 5
182 _b32tab[(c1 >> 6) & 0x1f], # bits 6 - 10
183 _b32tab[(c1 >> 1) & 0x1f], # bits 11 - 15
184 _b32tab[c2 >> 12], # bits 16 - 20 (1 - 5)
185 _b32tab[(c2 >> 7) & 0x1f], # bits 21 - 25 (6 - 10)
186 _b32tab[(c2 >> 2) & 0x1f], # bits 26 - 30 (11 - 15)
187 _b32tab[c3 >> 5], # bits 31 - 35 (1 - 5)
188 _b32tab[c3 & 0x1f], # bits 36 - 40 (1 - 5)
189 ])
Barry Warsaw4c904d12004-01-04 01:12:26 +0000190 # Adjust for any leftover partial quanta
191 if leftover == 1:
Guido van Rossum4581ae52007-05-22 21:56:47 +0000192 return encoded[:-6] + b'======'
Barry Warsaw4c904d12004-01-04 01:12:26 +0000193 elif leftover == 2:
Guido van Rossum4581ae52007-05-22 21:56:47 +0000194 return encoded[:-4] + b'===='
Barry Warsaw4c904d12004-01-04 01:12:26 +0000195 elif leftover == 3:
Guido van Rossum4581ae52007-05-22 21:56:47 +0000196 return encoded[:-3] + b'==='
Barry Warsaw4c904d12004-01-04 01:12:26 +0000197 elif leftover == 4:
Guido van Rossum4581ae52007-05-22 21:56:47 +0000198 return encoded[:-1] + b'='
Barry Warsaw4c904d12004-01-04 01:12:26 +0000199 return encoded
200
201
202def b32decode(s, casefold=False, map01=None):
Guido van Rossum4581ae52007-05-22 21:56:47 +0000203 """Decode a Base32 encoded byte string.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000204
Guido van Rossum4581ae52007-05-22 21:56:47 +0000205 s is the byte string to decode. Optional casefold is a flag
206 specifying whether a lowercase alphabet is acceptable as input.
207 For security purposes, the default is False.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000208
Guido van Rossum4581ae52007-05-22 21:56:47 +0000209 RFC 3548 allows for optional mapping of the digit 0 (zero) to the
210 letter O (oh), and for optional mapping of the digit 1 (one) to
211 either the letter I (eye) or letter L (el). The optional argument
212 map01 when not None, specifies which letter the digit 1 should be
213 mapped to (when map01 is not None, the digit 0 is always mapped to
214 the letter O). For security purposes the default is None, so that
215 0 and 1 are not allowed in the input.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000216
Guido van Rossum4581ae52007-05-22 21:56:47 +0000217 The decoded byte string is returned. binascii.Error is raised if
218 the input is incorrectly padded or if there are non-alphabet
219 characters present in the input.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000220 """
Antoine Pitrouea6b4d52012-02-20 19:30:23 +0100221 s = _bytes_from_decode_data(s)
Barry Warsaw4c904d12004-01-04 01:12:26 +0000222 quanta, leftover = divmod(len(s), 8)
223 if leftover:
Guido van Rossum4581ae52007-05-22 21:56:47 +0000224 raise binascii.Error('Incorrect padding')
Barry Warsaw4c904d12004-01-04 01:12:26 +0000225 # Handle section 2.4 zero and one mapping. The flag map01 will be either
226 # False, or the character to map the digit 1 (one) to. It should be
227 # either L (el) or I (eye).
Alexandre Vassalotti5209857f2008-05-03 04:39:38 +0000228 if map01 is not None:
Antoine Pitrouea6b4d52012-02-20 19:30:23 +0100229 map01 = _bytes_from_decode_data(map01)
Guido van Rossum4581ae52007-05-22 21:56:47 +0000230 assert len(map01) == 1, repr(map01)
Guido van Rossum98297ee2007-11-06 21:34:58 +0000231 s = _translate(s, {b'0': b'O', b'1': map01})
Barry Warsaw4c904d12004-01-04 01:12:26 +0000232 if casefold:
Guido van Rossum98297ee2007-11-06 21:34:58 +0000233 s = s.upper()
Barry Warsaw4c904d12004-01-04 01:12:26 +0000234 # Strip off pad characters from the right. We need to count the pad
235 # characters because this will tell us how many null bytes to remove from
236 # the end of the decoded string.
237 padchars = 0
Antoine Pitroufd036452008-08-19 17:56:33 +0000238 mo = re.search(b'(?P<pad>[=]*)$', s)
Barry Warsaw4c904d12004-01-04 01:12:26 +0000239 if mo:
240 padchars = len(mo.group('pad'))
241 if padchars > 0:
242 s = s[:-padchars]
243 # Now decode the full quanta
244 parts = []
245 acc = 0
246 shift = 35
247 for c in s:
248 val = _b32rev.get(c)
249 if val is None:
250 raise TypeError('Non-base32 digit found')
251 acc += _b32rev[c] << shift
252 shift -= 5
253 if shift < 0:
Ezio Melotti84befb02010-07-28 00:23:21 +0000254 parts.append(binascii.unhexlify(bytes('%010x' % acc, "ascii")))
Barry Warsaw4c904d12004-01-04 01:12:26 +0000255 acc = 0
256 shift = 35
257 # Process the last, partial quanta
Guido van Rossum09549f42007-08-27 20:40:10 +0000258 last = binascii.unhexlify(bytes('%010x' % acc, "ascii"))
Andrew M. Kuchling6e57c2a2005-06-08 22:51:38 +0000259 if padchars == 0:
Guido van Rossum4581ae52007-05-22 21:56:47 +0000260 last = b'' # No characters
Andrew M. Kuchling6e57c2a2005-06-08 22:51:38 +0000261 elif padchars == 1:
Barry Warsaw4c904d12004-01-04 01:12:26 +0000262 last = last[:-1]
263 elif padchars == 3:
264 last = last[:-2]
265 elif padchars == 4:
266 last = last[:-3]
267 elif padchars == 6:
268 last = last[:-4]
Andrew M. Kuchling6e57c2a2005-06-08 22:51:38 +0000269 else:
Guido van Rossum4581ae52007-05-22 21:56:47 +0000270 raise binascii.Error('Incorrect padding')
Barry Warsaw4c904d12004-01-04 01:12:26 +0000271 parts.append(last)
Guido van Rossum4581ae52007-05-22 21:56:47 +0000272 return b''.join(parts)
Barry Warsaw4c904d12004-01-04 01:12:26 +0000273
274
Antoine Pitroufd036452008-08-19 17:56:33 +0000275
Barry Warsaw4c904d12004-01-04 01:12:26 +0000276# RFC 3548, Base 16 Alphabet specifies uppercase, but hexlify() returns
277# lowercase. The RFC also recommends against accepting input case
278# insensitively.
279def b16encode(s):
Guido van Rossum4581ae52007-05-22 21:56:47 +0000280 """Encode a byte string using Base16.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000281
Guido van Rossum4581ae52007-05-22 21:56:47 +0000282 s is the byte string to encode. The encoded byte string is returned.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000283 """
Alexandre Vassalotti5209857f2008-05-03 04:39:38 +0000284 if not isinstance(s, bytes_types):
285 raise TypeError("expected bytes, not %s" % s.__class__.__name__)
Guido van Rossum98297ee2007-11-06 21:34:58 +0000286 return binascii.hexlify(s).upper()
Barry Warsaw4c904d12004-01-04 01:12:26 +0000287
288
289def b16decode(s, casefold=False):
Guido van Rossum4581ae52007-05-22 21:56:47 +0000290 """Decode a Base16 encoded byte string.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000291
Guido van Rossum4581ae52007-05-22 21:56:47 +0000292 s is the byte string to decode. Optional casefold is a flag
293 specifying whether a lowercase alphabet is acceptable as input.
294 For security purposes, the default is False.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000295
Guido van Rossum4581ae52007-05-22 21:56:47 +0000296 The decoded byte string is returned. binascii.Error is raised if
297 s were incorrectly padded or if there are non-alphabet characters
298 present in the string.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000299 """
Antoine Pitrouea6b4d52012-02-20 19:30:23 +0100300 s = _bytes_from_decode_data(s)
Barry Warsaw4c904d12004-01-04 01:12:26 +0000301 if casefold:
Guido van Rossum98297ee2007-11-06 21:34:58 +0000302 s = s.upper()
Antoine Pitroufd036452008-08-19 17:56:33 +0000303 if re.search(b'[^0-9A-F]', s):
Guido van Rossum4581ae52007-05-22 21:56:47 +0000304 raise binascii.Error('Non-base16 digit found')
Barry Warsaw4c904d12004-01-04 01:12:26 +0000305 return binascii.unhexlify(s)
306
307
Antoine Pitroufd036452008-08-19 17:56:33 +0000308
Barry Warsaw4c904d12004-01-04 01:12:26 +0000309# Legacy interface. This code could be cleaned up since I don't believe
310# binascii has any line length limitations. It just doesn't seem worth it
Guido van Rossum4581ae52007-05-22 21:56:47 +0000311# though. The files should be opened in binary mode.
Skip Montanaroe99d5ea2001-01-20 19:54:20 +0000312
Guido van Rossumf1945461995-06-14 23:43:44 +0000313MAXLINESIZE = 76 # Excluding the CRLF
Guido van Rossum54e54c62001-09-04 19:14:14 +0000314MAXBINSIZE = (MAXLINESIZE//4)*3
Guido van Rossumf1945461995-06-14 23:43:44 +0000315
Guido van Rossumf1945461995-06-14 23:43:44 +0000316def encode(input, output):
Guido van Rossum54a40cb2007-08-27 22:27:41 +0000317 """Encode a file; input and output are binary files."""
Barry Warsaw4c904d12004-01-04 01:12:26 +0000318 while True:
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000319 s = input.read(MAXBINSIZE)
Barry Warsaw4c904d12004-01-04 01:12:26 +0000320 if not s:
321 break
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000322 while len(s) < MAXBINSIZE:
323 ns = input.read(MAXBINSIZE-len(s))
Barry Warsaw4c904d12004-01-04 01:12:26 +0000324 if not ns:
325 break
326 s += ns
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000327 line = binascii.b2a_base64(s)
328 output.write(line)
Guido van Rossumf1945461995-06-14 23:43:44 +0000329
Barry Warsaw4c904d12004-01-04 01:12:26 +0000330
Guido van Rossumf1945461995-06-14 23:43:44 +0000331def decode(input, output):
Guido van Rossum54a40cb2007-08-27 22:27:41 +0000332 """Decode a file; input and output are binary files."""
Barry Warsaw4c904d12004-01-04 01:12:26 +0000333 while True:
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000334 line = input.readline()
Barry Warsaw4c904d12004-01-04 01:12:26 +0000335 if not line:
336 break
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000337 s = binascii.a2b_base64(line)
338 output.write(s)
Guido van Rossumf1945461995-06-14 23:43:44 +0000339
Barry Warsaw4c904d12004-01-04 01:12:26 +0000340
Georg Brandlb54d8012009-06-04 09:11:51 +0000341def encodebytes(s):
342 """Encode a bytestring into a bytestring containing multiple lines
343 of base-64 data."""
Guido van Rossum254348e2007-11-21 19:29:53 +0000344 if not isinstance(s, bytes_types):
Guido van Rossum98b349f2007-08-27 21:47:52 +0000345 raise TypeError("expected bytes, not %s" % s.__class__.__name__)
Peter Schneider-Kampfbb2b4c2001-06-07 18:56:13 +0000346 pieces = []
347 for i in range(0, len(s), MAXBINSIZE):
348 chunk = s[i : i + MAXBINSIZE]
349 pieces.append(binascii.b2a_base64(chunk))
Guido van Rossum4581ae52007-05-22 21:56:47 +0000350 return b"".join(pieces)
Guido van Rossumf1945461995-06-14 23:43:44 +0000351
Georg Brandlb54d8012009-06-04 09:11:51 +0000352def encodestring(s):
353 """Legacy alias of encodebytes()."""
354 import warnings
355 warnings.warn("encodestring() is a deprecated alias, use encodebytes()",
356 DeprecationWarning, 2)
357 return encodebytes(s)
Barry Warsaw4c904d12004-01-04 01:12:26 +0000358
Guido van Rossum54a40cb2007-08-27 22:27:41 +0000359
Georg Brandlb54d8012009-06-04 09:11:51 +0000360def decodebytes(s):
361 """Decode a bytestring of base-64 data into a bytestring."""
Guido van Rossum254348e2007-11-21 19:29:53 +0000362 if not isinstance(s, bytes_types):
Guido van Rossum98b349f2007-08-27 21:47:52 +0000363 raise TypeError("expected bytes, not %s" % s.__class__.__name__)
Peter Schneider-Kampfbb2b4c2001-06-07 18:56:13 +0000364 return binascii.a2b_base64(s)
Guido van Rossumf1945461995-06-14 23:43:44 +0000365
Georg Brandlb54d8012009-06-04 09:11:51 +0000366def decodestring(s):
367 """Legacy alias of decodebytes()."""
368 import warnings
369 warnings.warn("decodestring() is a deprecated alias, use decodebytes()",
370 DeprecationWarning, 2)
371 return decodebytes(s)
Barry Warsaw4c904d12004-01-04 01:12:26 +0000372
Antoine Pitroufd036452008-08-19 17:56:33 +0000373
Guido van Rossum4581ae52007-05-22 21:56:47 +0000374# Usable as a script...
375def main():
376 """Small main program"""
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000377 import sys, getopt
378 try:
379 opts, args = getopt.getopt(sys.argv[1:], 'deut')
Guido van Rossumb940e112007-01-10 16:19:56 +0000380 except getopt.error as msg:
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000381 sys.stdout = sys.stderr
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000382 print(msg)
383 print("""usage: %s [-d|-e|-u|-t] [file|-]
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000384 -d, -u: decode
385 -e: encode (default)
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000386 -t: encode and decode string 'Aladdin:open sesame'"""%sys.argv[0])
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000387 sys.exit(2)
388 func = encode
389 for o, a in opts:
390 if o == '-e': func = encode
391 if o == '-d': func = decode
392 if o == '-u': func = decode
Guido van Rossum4581ae52007-05-22 21:56:47 +0000393 if o == '-t': test(); return
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000394 if args and args[0] != '-':
Antoine Pitroub86680e2010-10-14 21:15:17 +0000395 with open(args[0], 'rb') as f:
396 func(f, sys.stdout.buffer)
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000397 else:
Victor Stinner479736b2010-05-25 21:12:34 +0000398 func(sys.stdin.buffer, sys.stdout.buffer)
Guido van Rossumf1945461995-06-14 23:43:44 +0000399
Barry Warsaw4c904d12004-01-04 01:12:26 +0000400
Guido van Rossum4581ae52007-05-22 21:56:47 +0000401def test():
402 s0 = b"Aladdin:open sesame"
403 print(repr(s0))
Georg Brandl706824f2009-06-04 09:42:55 +0000404 s1 = encodebytes(s0)
Guido van Rossum4581ae52007-05-22 21:56:47 +0000405 print(repr(s1))
Georg Brandl706824f2009-06-04 09:42:55 +0000406 s2 = decodebytes(s1)
Guido van Rossum4581ae52007-05-22 21:56:47 +0000407 print(repr(s2))
408 assert s0 == s2
Guido van Rossumf1945461995-06-14 23:43:44 +0000409
Barry Warsaw4c904d12004-01-04 01:12:26 +0000410
Guido van Rossumf1945461995-06-14 23:43:44 +0000411if __name__ == '__main__':
Guido van Rossum4581ae52007-05-22 21:56:47 +0000412 main()