blob: 0a93f2ecb6272abf71041ef6d54ebfd11f640269 [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')
Nick Coghlanfdf239a2013-10-03 00:43:22 +100038 if isinstance(s, bytes_types):
Antoine Pitrouea6b4d52012-02-20 19:30:23 +010039 return s
Nick Coghlanfdf239a2013-10-03 00:43:22 +100040 try:
41 return memoryview(s).tobytes()
42 except TypeError:
43 raise TypeError("argument should be a bytes-like object or ASCII "
44 "string, not %r" % s.__class__.__name__) from None
Barry Warsaw4c904d12004-01-04 01:12:26 +000045
Antoine Pitroufd036452008-08-19 17:56:33 +000046
Barry Warsaw4c904d12004-01-04 01:12:26 +000047# Base64 encoding/decoding uses binascii
48
49def b64encode(s, altchars=None):
Guido van Rossum4581ae52007-05-22 21:56:47 +000050 """Encode a byte string using Base64.
Barry Warsaw4c904d12004-01-04 01:12:26 +000051
Guido van Rossum4581ae52007-05-22 21:56:47 +000052 s is the byte string to encode. Optional altchars must be a byte
53 string of length 2 which specifies an alternative alphabet for the
54 '+' and '/' characters. This allows an application to
55 e.g. generate url or filesystem safe Base64 strings.
Barry Warsaw4c904d12004-01-04 01:12:26 +000056
Guido van Rossum4581ae52007-05-22 21:56:47 +000057 The encoded byte string is returned.
Barry Warsaw4c904d12004-01-04 01:12:26 +000058 """
59 # Strip off the trailing newline
60 encoded = binascii.b2a_base64(s)[:-1]
61 if altchars is not None:
Guido van Rossum4581ae52007-05-22 21:56:47 +000062 assert len(altchars) == 2, repr(altchars)
Guido van Rossum95c1c482012-06-22 15:16:09 -070063 return encoded.translate(bytes.maketrans(b'+/', altchars))
Barry Warsaw4c904d12004-01-04 01:12:26 +000064 return encoded
65
66
R. David Murray64951362010-11-11 20:09:20 +000067def b64decode(s, altchars=None, validate=False):
Guido van Rossum4581ae52007-05-22 21:56:47 +000068 """Decode a Base64 encoded byte string.
Barry Warsaw4c904d12004-01-04 01:12:26 +000069
Guido van Rossum4581ae52007-05-22 21:56:47 +000070 s is the byte string to decode. Optional altchars must be a
71 string of length 2 which specifies the alternative alphabet used
72 instead of the '+' and '/' characters.
Barry Warsaw4c904d12004-01-04 01:12:26 +000073
R. David Murray64951362010-11-11 20:09:20 +000074 The decoded string is returned. A binascii.Error is raised if s is
75 incorrectly padded.
76
77 If validate is False (the default), non-base64-alphabet characters are
78 discarded prior to the padding check. If validate is True,
79 non-base64-alphabet characters in the input result in a binascii.Error.
Barry Warsaw4c904d12004-01-04 01:12:26 +000080 """
Antoine Pitrouea6b4d52012-02-20 19:30:23 +010081 s = _bytes_from_decode_data(s)
Barry Warsaw4c904d12004-01-04 01:12:26 +000082 if altchars is not None:
Antoine Pitrouea6b4d52012-02-20 19:30:23 +010083 altchars = _bytes_from_decode_data(altchars)
Guido van Rossum4581ae52007-05-22 21:56:47 +000084 assert len(altchars) == 2, repr(altchars)
Guido van Rossum95c1c482012-06-22 15:16:09 -070085 s = s.translate(bytes.maketrans(altchars, b'+/'))
R. David Murray64951362010-11-11 20:09:20 +000086 if validate and not re.match(b'^[A-Za-z0-9+/]*={0,2}$', s):
87 raise binascii.Error('Non-base64 digit found')
Guido van Rossum4581ae52007-05-22 21:56:47 +000088 return binascii.a2b_base64(s)
Barry Warsaw4c904d12004-01-04 01:12:26 +000089
90
91def standard_b64encode(s):
Guido van Rossum4581ae52007-05-22 21:56:47 +000092 """Encode a byte string using the standard Base64 alphabet.
Barry Warsaw4c904d12004-01-04 01:12:26 +000093
Guido van Rossum4581ae52007-05-22 21:56:47 +000094 s is the byte string to encode. The encoded byte string is returned.
Barry Warsaw4c904d12004-01-04 01:12:26 +000095 """
96 return b64encode(s)
97
98def standard_b64decode(s):
Guido van Rossum4581ae52007-05-22 21:56:47 +000099 """Decode a byte string encoded with the standard Base64 alphabet.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000100
Guido van Rossum4581ae52007-05-22 21:56:47 +0000101 s is the byte string to decode. The decoded byte string is
102 returned. binascii.Error is raised if the input is incorrectly
103 padded or if there are non-alphabet characters present in the
104 input.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000105 """
106 return b64decode(s)
107
Guido van Rossum95c1c482012-06-22 15:16:09 -0700108
109_urlsafe_encode_translation = bytes.maketrans(b'+/', b'-_')
110_urlsafe_decode_translation = bytes.maketrans(b'-_', b'+/')
111
Barry Warsaw4c904d12004-01-04 01:12:26 +0000112def urlsafe_b64encode(s):
Guido van Rossum4581ae52007-05-22 21:56:47 +0000113 """Encode a byte string using a url-safe Base64 alphabet.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000114
Guido van Rossum4581ae52007-05-22 21:56:47 +0000115 s is the byte string to encode. The encoded byte string is
116 returned. The alphabet uses '-' instead of '+' and '_' instead of
117 '/'.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000118 """
Guido van Rossum95c1c482012-06-22 15:16:09 -0700119 return b64encode(s).translate(_urlsafe_encode_translation)
Barry Warsaw4c904d12004-01-04 01:12:26 +0000120
121def urlsafe_b64decode(s):
Guido van Rossum4581ae52007-05-22 21:56:47 +0000122 """Decode a byte string encoded with the standard Base64 alphabet.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000123
Guido van Rossum4581ae52007-05-22 21:56:47 +0000124 s is the byte string to decode. The decoded byte string is
125 returned. binascii.Error is raised if the input is incorrectly
126 padded or if there are non-alphabet characters present in the
127 input.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000128
129 The alphabet uses '-' instead of '+' and '_' instead of '/'.
130 """
Guido van Rossum95c1c482012-06-22 15:16:09 -0700131 s = _bytes_from_decode_data(s)
132 s = s.translate(_urlsafe_decode_translation)
133 return b64decode(s)
Barry Warsaw4c904d12004-01-04 01:12:26 +0000134
135
Antoine Pitroufd036452008-08-19 17:56:33 +0000136
Barry Warsaw4c904d12004-01-04 01:12:26 +0000137# Base32 encoding/decoding must be done in Python
Serhiy Storchaka87aa7dc2013-05-19 11:49:32 +0300138_b32alphabet = b'ABCDEFGHIJKLMNOPQRSTUVWXYZ234567'
139_b32tab = [bytes([i]) for i in _b32alphabet]
140_b32tab2 = [a + b for a in _b32tab for b in _b32tab]
141_b32rev = {v: k for k, v in enumerate(_b32alphabet)}
Barry Warsaw4c904d12004-01-04 01:12:26 +0000142
143def b32encode(s):
Guido van Rossum4581ae52007-05-22 21:56:47 +0000144 """Encode a byte string using Base32.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000145
Guido van Rossum4581ae52007-05-22 21:56:47 +0000146 s is the byte string to encode. The encoded byte string is returned.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000147 """
Guido van Rossum254348e2007-11-21 19:29:53 +0000148 if not isinstance(s, bytes_types):
Nick Coghlanfdf239a2013-10-03 00:43:22 +1000149 s = memoryview(s).tobytes()
Serhiy Storchaka87aa7dc2013-05-19 11:49:32 +0300150 leftover = len(s) % 5
Barry Warsaw4c904d12004-01-04 01:12:26 +0000151 # Pad the last quantum with zero bits if necessary
152 if leftover:
Guido van Rossum4581ae52007-05-22 21:56:47 +0000153 s = s + bytes(5 - leftover) # Don't use += !
Serhiy Storchaka2c3f2f12013-05-19 11:41:15 +0300154 encoded = bytearray()
Serhiy Storchaka87aa7dc2013-05-19 11:49:32 +0300155 from_bytes = int.from_bytes
156 b32tab2 = _b32tab2
157 for i in range(0, len(s), 5):
158 c = from_bytes(s[i: i + 5], 'big')
159 encoded += (b32tab2[c >> 30] + # bits 1 - 10
160 b32tab2[(c >> 20) & 0x3ff] + # bits 11 - 20
161 b32tab2[(c >> 10) & 0x3ff] + # bits 21 - 30
162 b32tab2[c & 0x3ff] # bits 31 - 40
163 )
Barry Warsaw4c904d12004-01-04 01:12:26 +0000164 # Adjust for any leftover partial quanta
165 if leftover == 1:
Serhiy Storchaka2c3f2f12013-05-19 11:41:15 +0300166 encoded[-6:] = b'======'
Barry Warsaw4c904d12004-01-04 01:12:26 +0000167 elif leftover == 2:
Serhiy Storchaka2c3f2f12013-05-19 11:41:15 +0300168 encoded[-4:] = b'===='
Barry Warsaw4c904d12004-01-04 01:12:26 +0000169 elif leftover == 3:
Serhiy Storchaka2c3f2f12013-05-19 11:41:15 +0300170 encoded[-3:] = b'==='
Barry Warsaw4c904d12004-01-04 01:12:26 +0000171 elif leftover == 4:
Serhiy Storchaka2c3f2f12013-05-19 11:41:15 +0300172 encoded[-1:] = b'='
173 return bytes(encoded)
Barry Warsaw4c904d12004-01-04 01:12:26 +0000174
175def b32decode(s, casefold=False, map01=None):
Guido van Rossum4581ae52007-05-22 21:56:47 +0000176 """Decode a Base32 encoded byte string.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000177
Guido van Rossum4581ae52007-05-22 21:56:47 +0000178 s is the byte string to decode. Optional casefold is a flag
179 specifying whether a lowercase alphabet is acceptable as input.
180 For security purposes, the default is False.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000181
Guido van Rossum4581ae52007-05-22 21:56:47 +0000182 RFC 3548 allows for optional mapping of the digit 0 (zero) to the
183 letter O (oh), and for optional mapping of the digit 1 (one) to
184 either the letter I (eye) or letter L (el). The optional argument
185 map01 when not None, specifies which letter the digit 1 should be
186 mapped to (when map01 is not None, the digit 0 is always mapped to
187 the letter O). For security purposes the default is None, so that
188 0 and 1 are not allowed in the input.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000189
Guido van Rossum4581ae52007-05-22 21:56:47 +0000190 The decoded byte string is returned. binascii.Error is raised if
191 the input is incorrectly padded or if there are non-alphabet
192 characters present in the input.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000193 """
Antoine Pitrouea6b4d52012-02-20 19:30:23 +0100194 s = _bytes_from_decode_data(s)
Serhiy Storchaka87aa7dc2013-05-19 11:49:32 +0300195 if len(s) % 8:
Guido van Rossum4581ae52007-05-22 21:56:47 +0000196 raise binascii.Error('Incorrect padding')
Barry Warsaw4c904d12004-01-04 01:12:26 +0000197 # Handle section 2.4 zero and one mapping. The flag map01 will be either
198 # False, or the character to map the digit 1 (one) to. It should be
199 # either L (el) or I (eye).
Alexandre Vassalotti5209857f2008-05-03 04:39:38 +0000200 if map01 is not None:
Antoine Pitrouea6b4d52012-02-20 19:30:23 +0100201 map01 = _bytes_from_decode_data(map01)
Guido van Rossum4581ae52007-05-22 21:56:47 +0000202 assert len(map01) == 1, repr(map01)
Guido van Rossum95c1c482012-06-22 15:16:09 -0700203 s = s.translate(bytes.maketrans(b'01', b'O' + map01))
Barry Warsaw4c904d12004-01-04 01:12:26 +0000204 if casefold:
Guido van Rossum98297ee2007-11-06 21:34:58 +0000205 s = s.upper()
Barry Warsaw4c904d12004-01-04 01:12:26 +0000206 # Strip off pad characters from the right. We need to count the pad
207 # characters because this will tell us how many null bytes to remove from
208 # the end of the decoded string.
Serhiy Storchaka87aa7dc2013-05-19 11:49:32 +0300209 l = len(s)
210 s = s.rstrip(b'=')
211 padchars = l - len(s)
Barry Warsaw4c904d12004-01-04 01:12:26 +0000212 # Now decode the full quanta
Serhiy Storchaka87aa7dc2013-05-19 11:49:32 +0300213 decoded = bytearray()
214 b32rev = _b32rev
215 for i in range(0, len(s), 8):
216 quanta = s[i: i + 8]
217 acc = 0
218 try:
219 for c in quanta:
220 acc = (acc << 5) + b32rev[c]
221 except KeyError:
Serhiy Storchaka5cc9d322013-05-28 15:42:34 +0300222 raise binascii.Error('Non-base32 digit found') from None
Serhiy Storchaka87aa7dc2013-05-19 11:49:32 +0300223 decoded += acc.to_bytes(5, 'big')
Barry Warsaw4c904d12004-01-04 01:12:26 +0000224 # Process the last, partial quanta
Serhiy Storchaka87aa7dc2013-05-19 11:49:32 +0300225 if padchars:
226 acc <<= 5 * padchars
227 last = acc.to_bytes(5, 'big')
228 if padchars == 1:
229 decoded[-5:] = last[:-1]
230 elif padchars == 3:
231 decoded[-5:] = last[:-2]
232 elif padchars == 4:
233 decoded[-5:] = last[:-3]
234 elif padchars == 6:
235 decoded[-5:] = last[:-4]
236 else:
237 raise binascii.Error('Incorrect padding')
238 return bytes(decoded)
Barry Warsaw4c904d12004-01-04 01:12:26 +0000239
240
Antoine Pitroufd036452008-08-19 17:56:33 +0000241
Barry Warsaw4c904d12004-01-04 01:12:26 +0000242# RFC 3548, Base 16 Alphabet specifies uppercase, but hexlify() returns
243# lowercase. The RFC also recommends against accepting input case
244# insensitively.
245def b16encode(s):
Guido van Rossum4581ae52007-05-22 21:56:47 +0000246 """Encode a byte string using Base16.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000247
Guido van Rossum4581ae52007-05-22 21:56:47 +0000248 s is the byte string to encode. The encoded byte string is returned.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000249 """
Guido van Rossum98297ee2007-11-06 21:34:58 +0000250 return binascii.hexlify(s).upper()
Barry Warsaw4c904d12004-01-04 01:12:26 +0000251
252
253def b16decode(s, casefold=False):
Guido van Rossum4581ae52007-05-22 21:56:47 +0000254 """Decode a Base16 encoded byte string.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000255
Guido van Rossum4581ae52007-05-22 21:56:47 +0000256 s is the byte string to decode. Optional casefold is a flag
257 specifying whether a lowercase alphabet is acceptable as input.
258 For security purposes, the default is False.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000259
Guido van Rossum4581ae52007-05-22 21:56:47 +0000260 The decoded byte string is returned. binascii.Error is raised if
261 s were incorrectly padded or if there are non-alphabet characters
262 present in the string.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000263 """
Antoine Pitrouea6b4d52012-02-20 19:30:23 +0100264 s = _bytes_from_decode_data(s)
Barry Warsaw4c904d12004-01-04 01:12:26 +0000265 if casefold:
Guido van Rossum98297ee2007-11-06 21:34:58 +0000266 s = s.upper()
Antoine Pitroufd036452008-08-19 17:56:33 +0000267 if re.search(b'[^0-9A-F]', s):
Guido van Rossum4581ae52007-05-22 21:56:47 +0000268 raise binascii.Error('Non-base16 digit found')
Barry Warsaw4c904d12004-01-04 01:12:26 +0000269 return binascii.unhexlify(s)
270
271
Antoine Pitroufd036452008-08-19 17:56:33 +0000272
Barry Warsaw4c904d12004-01-04 01:12:26 +0000273# Legacy interface. This code could be cleaned up since I don't believe
274# binascii has any line length limitations. It just doesn't seem worth it
Guido van Rossum4581ae52007-05-22 21:56:47 +0000275# though. The files should be opened in binary mode.
Skip Montanaroe99d5ea2001-01-20 19:54:20 +0000276
Guido van Rossumf1945461995-06-14 23:43:44 +0000277MAXLINESIZE = 76 # Excluding the CRLF
Guido van Rossum54e54c62001-09-04 19:14:14 +0000278MAXBINSIZE = (MAXLINESIZE//4)*3
Guido van Rossumf1945461995-06-14 23:43:44 +0000279
Guido van Rossumf1945461995-06-14 23:43:44 +0000280def encode(input, output):
Guido van Rossum54a40cb2007-08-27 22:27:41 +0000281 """Encode a file; input and output are binary files."""
Barry Warsaw4c904d12004-01-04 01:12:26 +0000282 while True:
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000283 s = input.read(MAXBINSIZE)
Barry Warsaw4c904d12004-01-04 01:12:26 +0000284 if not s:
285 break
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000286 while len(s) < MAXBINSIZE:
287 ns = input.read(MAXBINSIZE-len(s))
Barry Warsaw4c904d12004-01-04 01:12:26 +0000288 if not ns:
289 break
290 s += ns
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000291 line = binascii.b2a_base64(s)
292 output.write(line)
Guido van Rossumf1945461995-06-14 23:43:44 +0000293
Barry Warsaw4c904d12004-01-04 01:12:26 +0000294
Guido van Rossumf1945461995-06-14 23:43:44 +0000295def decode(input, output):
Guido van Rossum54a40cb2007-08-27 22:27:41 +0000296 """Decode a file; input and output are binary files."""
Barry Warsaw4c904d12004-01-04 01:12:26 +0000297 while True:
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000298 line = input.readline()
Barry Warsaw4c904d12004-01-04 01:12:26 +0000299 if not line:
300 break
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000301 s = binascii.a2b_base64(line)
302 output.write(s)
Guido van Rossumf1945461995-06-14 23:43:44 +0000303
Nick Coghlanfdf239a2013-10-03 00:43:22 +1000304def _input_type_check(s):
305 try:
306 m = memoryview(s)
307 except TypeError as err:
308 msg = "expected bytes-like object, not %s" % s.__class__.__name__
309 raise TypeError(msg) from err
310 if m.format not in ('c', 'b', 'B'):
311 msg = ("expected single byte elements, not %r from %s" %
312 (m.format, s.__class__.__name__))
313 raise TypeError(msg)
314 if m.ndim != 1:
315 msg = ("expected 1-D data, not %d-D data from %s" %
316 (m.ndim, s.__class__.__name__))
317 raise TypeError(msg)
318
Barry Warsaw4c904d12004-01-04 01:12:26 +0000319
Georg Brandlb54d8012009-06-04 09:11:51 +0000320def encodebytes(s):
321 """Encode a bytestring into a bytestring containing multiple lines
322 of base-64 data."""
Nick Coghlanfdf239a2013-10-03 00:43:22 +1000323 _input_type_check(s)
Peter Schneider-Kampfbb2b4c2001-06-07 18:56:13 +0000324 pieces = []
325 for i in range(0, len(s), MAXBINSIZE):
326 chunk = s[i : i + MAXBINSIZE]
327 pieces.append(binascii.b2a_base64(chunk))
Guido van Rossum4581ae52007-05-22 21:56:47 +0000328 return b"".join(pieces)
Guido van Rossumf1945461995-06-14 23:43:44 +0000329
Georg Brandlb54d8012009-06-04 09:11:51 +0000330def encodestring(s):
331 """Legacy alias of encodebytes()."""
332 import warnings
333 warnings.warn("encodestring() is a deprecated alias, use encodebytes()",
334 DeprecationWarning, 2)
335 return encodebytes(s)
Barry Warsaw4c904d12004-01-04 01:12:26 +0000336
Guido van Rossum54a40cb2007-08-27 22:27:41 +0000337
Georg Brandlb54d8012009-06-04 09:11:51 +0000338def decodebytes(s):
339 """Decode a bytestring of base-64 data into a bytestring."""
Nick Coghlanfdf239a2013-10-03 00:43:22 +1000340 _input_type_check(s)
Peter Schneider-Kampfbb2b4c2001-06-07 18:56:13 +0000341 return binascii.a2b_base64(s)
Guido van Rossumf1945461995-06-14 23:43:44 +0000342
Georg Brandlb54d8012009-06-04 09:11:51 +0000343def decodestring(s):
344 """Legacy alias of decodebytes()."""
345 import warnings
346 warnings.warn("decodestring() is a deprecated alias, use decodebytes()",
347 DeprecationWarning, 2)
348 return decodebytes(s)
Barry Warsaw4c904d12004-01-04 01:12:26 +0000349
Antoine Pitroufd036452008-08-19 17:56:33 +0000350
Guido van Rossum4581ae52007-05-22 21:56:47 +0000351# Usable as a script...
352def main():
353 """Small main program"""
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000354 import sys, getopt
355 try:
356 opts, args = getopt.getopt(sys.argv[1:], 'deut')
Guido van Rossumb940e112007-01-10 16:19:56 +0000357 except getopt.error as msg:
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000358 sys.stdout = sys.stderr
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000359 print(msg)
360 print("""usage: %s [-d|-e|-u|-t] [file|-]
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000361 -d, -u: decode
362 -e: encode (default)
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000363 -t: encode and decode string 'Aladdin:open sesame'"""%sys.argv[0])
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000364 sys.exit(2)
365 func = encode
366 for o, a in opts:
367 if o == '-e': func = encode
368 if o == '-d': func = decode
369 if o == '-u': func = decode
Guido van Rossum4581ae52007-05-22 21:56:47 +0000370 if o == '-t': test(); return
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000371 if args and args[0] != '-':
Antoine Pitroub86680e2010-10-14 21:15:17 +0000372 with open(args[0], 'rb') as f:
373 func(f, sys.stdout.buffer)
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000374 else:
Victor Stinner479736b2010-05-25 21:12:34 +0000375 func(sys.stdin.buffer, sys.stdout.buffer)
Guido van Rossumf1945461995-06-14 23:43:44 +0000376
Barry Warsaw4c904d12004-01-04 01:12:26 +0000377
Guido van Rossum4581ae52007-05-22 21:56:47 +0000378def test():
379 s0 = b"Aladdin:open sesame"
380 print(repr(s0))
Georg Brandl706824f2009-06-04 09:42:55 +0000381 s1 = encodebytes(s0)
Guido van Rossum4581ae52007-05-22 21:56:47 +0000382 print(repr(s1))
Georg Brandl706824f2009-06-04 09:42:55 +0000383 s2 = decodebytes(s1)
Guido van Rossum4581ae52007-05-22 21:56:47 +0000384 print(repr(s2))
385 assert s0 == s2
Guido van Rossumf1945461995-06-14 23:43:44 +0000386
Barry Warsaw4c904d12004-01-04 01:12:26 +0000387
Guido van Rossumf1945461995-06-14 23:43:44 +0000388if __name__ == '__main__':
Guido van Rossum4581ae52007-05-22 21:56:47 +0000389 main()