blob: de3f184db2e9dea36406c8fc84960416044622e5 [file] [log] [blame]
Guido van Rossumaa925a51997-04-02 05:47:39 +00001#! /usr/bin/env python
2
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
16 'encode', 'decode', 'encodestring', 'decodestring',
17 # 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
30def _translate(s, altchars):
Guido van Rossum4581ae52007-05-22 21:56:47 +000031 assert isinstance(s, bytes), type(s)
32 translation = bytes(range(256))
Barry Warsaw4c904d12004-01-04 01:12:26 +000033 for k, v in altchars.items():
Guido van Rossum4581ae52007-05-22 21:56:47 +000034 translation[ord(k)] = v[0]
35 return s.translate(translation)
Barry Warsaw4c904d12004-01-04 01:12:26 +000036
37
38
39# Base64 encoding/decoding uses binascii
40
41def b64encode(s, altchars=None):
Guido van Rossum4581ae52007-05-22 21:56:47 +000042 """Encode a byte string using Base64.
Barry Warsaw4c904d12004-01-04 01:12:26 +000043
Guido van Rossum4581ae52007-05-22 21:56:47 +000044 s is the byte string to encode. Optional altchars must be a byte
45 string of length 2 which specifies an alternative alphabet for the
46 '+' and '/' characters. This allows an application to
47 e.g. generate url or filesystem safe Base64 strings.
Barry Warsaw4c904d12004-01-04 01:12:26 +000048
Guido van Rossum4581ae52007-05-22 21:56:47 +000049 The encoded byte string is returned.
Barry Warsaw4c904d12004-01-04 01:12:26 +000050 """
Guido van Rossum4581ae52007-05-22 21:56:47 +000051 if not isinstance(s, bytes):
52 s = bytes(s)
Barry Warsaw4c904d12004-01-04 01:12:26 +000053 # Strip off the trailing newline
54 encoded = binascii.b2a_base64(s)[:-1]
55 if altchars is not None:
Guido van Rossum4581ae52007-05-22 21:56:47 +000056 if not isinstance(altchars, bytes):
57 altchars = bytes(altchars)
58 assert len(altchars) == 2, repr(altchars)
59 return _translate(encoded, {'+': altchars[0:1], '/': altchars[1:2]})
Barry Warsaw4c904d12004-01-04 01:12:26 +000060 return encoded
61
62
63def b64decode(s, altchars=None):
Guido van Rossum4581ae52007-05-22 21:56:47 +000064 """Decode a Base64 encoded byte string.
Barry Warsaw4c904d12004-01-04 01:12:26 +000065
Guido van Rossum4581ae52007-05-22 21:56:47 +000066 s is the byte string to decode. Optional altchars must be a
67 string of length 2 which specifies the alternative alphabet used
68 instead of the '+' and '/' characters.
Barry Warsaw4c904d12004-01-04 01:12:26 +000069
Guido van Rossum4581ae52007-05-22 21:56:47 +000070 The decoded byte string is returned. binascii.Error is raised if
71 s were incorrectly padded or if there are non-alphabet characters
72 present in the string.
Barry Warsaw4c904d12004-01-04 01:12:26 +000073 """
Guido van Rossum4581ae52007-05-22 21:56:47 +000074 if not isinstance(s, bytes):
75 s = bytes(s)
Barry Warsaw4c904d12004-01-04 01:12:26 +000076 if altchars is not None:
Guido van Rossum4581ae52007-05-22 21:56:47 +000077 if not isinstance(altchars, bytes):
78 altchars = bytes(altchars)
79 assert len(altchars) == 2, repr(altchars)
80 s = _translate(s, {chr(altchars[0]): b'+', chr(altchars[1]): b'/'})
81 return binascii.a2b_base64(s)
Barry Warsaw4c904d12004-01-04 01:12:26 +000082
83
84def standard_b64encode(s):
Guido van Rossum4581ae52007-05-22 21:56:47 +000085 """Encode a byte string using the standard Base64 alphabet.
Barry Warsaw4c904d12004-01-04 01:12:26 +000086
Guido van Rossum4581ae52007-05-22 21:56:47 +000087 s is the byte string to encode. The encoded byte string is returned.
Barry Warsaw4c904d12004-01-04 01:12:26 +000088 """
89 return b64encode(s)
90
91def standard_b64decode(s):
Guido van Rossum4581ae52007-05-22 21:56:47 +000092 """Decode a byte string encoded with 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 decode. The decoded byte string is
95 returned. binascii.Error is raised if the input is incorrectly
96 padded or if there are non-alphabet characters present in the
97 input.
Barry Warsaw4c904d12004-01-04 01:12:26 +000098 """
99 return b64decode(s)
100
101def urlsafe_b64encode(s):
Guido van Rossum4581ae52007-05-22 21:56:47 +0000102 """Encode a byte string using a url-safe Base64 alphabet.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000103
Guido van Rossum4581ae52007-05-22 21:56:47 +0000104 s is the byte string to encode. The encoded byte string is
105 returned. The alphabet uses '-' instead of '+' and '_' instead of
106 '/'.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000107 """
Guido van Rossum4581ae52007-05-22 21:56:47 +0000108 return b64encode(s, b'-_')
Barry Warsaw4c904d12004-01-04 01:12:26 +0000109
110def urlsafe_b64decode(s):
Guido van Rossum4581ae52007-05-22 21:56:47 +0000111 """Decode a byte string encoded with the standard Base64 alphabet.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000112
Guido van Rossum4581ae52007-05-22 21:56:47 +0000113 s is the byte string to decode. The decoded byte string is
114 returned. binascii.Error is raised if the input is incorrectly
115 padded or if there are non-alphabet characters present in the
116 input.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000117
118 The alphabet uses '-' instead of '+' and '_' instead of '/'.
119 """
Guido van Rossum4581ae52007-05-22 21:56:47 +0000120 return b64decode(s, b'-_')
Barry Warsaw4c904d12004-01-04 01:12:26 +0000121
122
123
124# Base32 encoding/decoding must be done in Python
125_b32alphabet = {
Guido van Rossum4581ae52007-05-22 21:56:47 +0000126 0: b'A', 9: b'J', 18: b'S', 27: b'3',
127 1: b'B', 10: b'K', 19: b'T', 28: b'4',
128 2: b'C', 11: b'L', 20: b'U', 29: b'5',
129 3: b'D', 12: b'M', 21: b'V', 30: b'6',
130 4: b'E', 13: b'N', 22: b'W', 31: b'7',
131 5: b'F', 14: b'O', 23: b'X',
132 6: b'G', 15: b'P', 24: b'Y',
133 7: b'H', 16: b'Q', 25: b'Z',
134 8: b'I', 17: b'R', 26: b'2',
Barry Warsaw4c904d12004-01-04 01:12:26 +0000135 }
136
Guido van Rossum4581ae52007-05-22 21:56:47 +0000137_b32tab = [v[0] for k, v in sorted(_b32alphabet.items())]
138_b32rev = dict([(v[0], k) for k, v in _b32alphabet.items()])
Barry Warsaw4c904d12004-01-04 01:12:26 +0000139
140
141def b32encode(s):
Guido van Rossum4581ae52007-05-22 21:56:47 +0000142 """Encode a byte string using Base32.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000143
Guido van Rossum4581ae52007-05-22 21:56:47 +0000144 s is the byte string to encode. The encoded byte string is returned.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000145 """
Guido van Rossum4581ae52007-05-22 21:56:47 +0000146 if not isinstance(s, bytes):
147 s = bytes(s)
Barry Warsaw4c904d12004-01-04 01:12:26 +0000148 quanta, leftover = divmod(len(s), 5)
149 # Pad the last quantum with zero bits if necessary
150 if leftover:
Guido van Rossum4581ae52007-05-22 21:56:47 +0000151 s = s + bytes(5 - leftover) # Don't use += !
Barry Warsaw4c904d12004-01-04 01:12:26 +0000152 quanta += 1
Guido van Rossum4581ae52007-05-22 21:56:47 +0000153 encoded = bytes()
Barry Warsaw4c904d12004-01-04 01:12:26 +0000154 for i in range(quanta):
155 # c1 and c2 are 16 bits wide, c3 is 8 bits wide. The intent of this
156 # code is to process the 40 bits in units of 5 bits. So we take the 1
157 # leftover bit of c1 and tack it onto c2. Then we take the 2 leftover
158 # bits of c2 and tack them onto c3. The shifts and masks are intended
159 # to give us values of exactly 5 bits in width.
160 c1, c2, c3 = struct.unpack('!HHB', s[i*5:(i+1)*5])
161 c2 += (c1 & 1) << 16 # 17 bits wide
162 c3 += (c2 & 3) << 8 # 10 bits wide
Guido van Rossum4581ae52007-05-22 21:56:47 +0000163 encoded += bytes([_b32tab[c1 >> 11], # bits 1 - 5
164 _b32tab[(c1 >> 6) & 0x1f], # bits 6 - 10
165 _b32tab[(c1 >> 1) & 0x1f], # bits 11 - 15
166 _b32tab[c2 >> 12], # bits 16 - 20 (1 - 5)
167 _b32tab[(c2 >> 7) & 0x1f], # bits 21 - 25 (6 - 10)
168 _b32tab[(c2 >> 2) & 0x1f], # bits 26 - 30 (11 - 15)
169 _b32tab[c3 >> 5], # bits 31 - 35 (1 - 5)
170 _b32tab[c3 & 0x1f], # bits 36 - 40 (1 - 5)
171 ])
Barry Warsaw4c904d12004-01-04 01:12:26 +0000172 # Adjust for any leftover partial quanta
173 if leftover == 1:
Guido van Rossum4581ae52007-05-22 21:56:47 +0000174 return encoded[:-6] + b'======'
Barry Warsaw4c904d12004-01-04 01:12:26 +0000175 elif leftover == 2:
Guido van Rossum4581ae52007-05-22 21:56:47 +0000176 return encoded[:-4] + b'===='
Barry Warsaw4c904d12004-01-04 01:12:26 +0000177 elif leftover == 3:
Guido van Rossum4581ae52007-05-22 21:56:47 +0000178 return encoded[:-3] + b'==='
Barry Warsaw4c904d12004-01-04 01:12:26 +0000179 elif leftover == 4:
Guido van Rossum4581ae52007-05-22 21:56:47 +0000180 return encoded[:-1] + b'='
Barry Warsaw4c904d12004-01-04 01:12:26 +0000181 return encoded
182
183
184def b32decode(s, casefold=False, map01=None):
Guido van Rossum4581ae52007-05-22 21:56:47 +0000185 """Decode a Base32 encoded byte string.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000186
Guido van Rossum4581ae52007-05-22 21:56:47 +0000187 s is the byte string to decode. Optional casefold is a flag
188 specifying whether a lowercase alphabet is acceptable as input.
189 For security purposes, the default is False.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000190
Guido van Rossum4581ae52007-05-22 21:56:47 +0000191 RFC 3548 allows for optional mapping of the digit 0 (zero) to the
192 letter O (oh), and for optional mapping of the digit 1 (one) to
193 either the letter I (eye) or letter L (el). The optional argument
194 map01 when not None, specifies which letter the digit 1 should be
195 mapped to (when map01 is not None, the digit 0 is always mapped to
196 the letter O). For security purposes the default is None, so that
197 0 and 1 are not allowed in the input.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000198
Guido van Rossum4581ae52007-05-22 21:56:47 +0000199 The decoded byte string is returned. binascii.Error is raised if
200 the input is incorrectly padded or if there are non-alphabet
201 characters present in the input.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000202 """
Guido van Rossum4581ae52007-05-22 21:56:47 +0000203 if not isinstance(s, bytes):
204 s = bytes(s)
Barry Warsaw4c904d12004-01-04 01:12:26 +0000205 quanta, leftover = divmod(len(s), 8)
206 if leftover:
Guido van Rossum4581ae52007-05-22 21:56:47 +0000207 raise binascii.Error('Incorrect padding')
Barry Warsaw4c904d12004-01-04 01:12:26 +0000208 # Handle section 2.4 zero and one mapping. The flag map01 will be either
209 # False, or the character to map the digit 1 (one) to. It should be
210 # either L (el) or I (eye).
211 if map01:
Guido van Rossum4581ae52007-05-22 21:56:47 +0000212 if not isinstance(map01, bytes):
213 map01 = bytes(map01)
214 assert len(map01) == 1, repr(map01)
215 s = _translate(s, {'0': b'O', '1': map01})
Barry Warsaw4c904d12004-01-04 01:12:26 +0000216 if casefold:
Guido van Rossum4581ae52007-05-22 21:56:47 +0000217 s = bytes(str(s, "ascii").upper(), "ascii")
Barry Warsaw4c904d12004-01-04 01:12:26 +0000218 # Strip off pad characters from the right. We need to count the pad
219 # characters because this will tell us how many null bytes to remove from
220 # the end of the decoded string.
221 padchars = 0
222 mo = re.search('(?P<pad>[=]*)$', s)
223 if mo:
224 padchars = len(mo.group('pad'))
225 if padchars > 0:
226 s = s[:-padchars]
227 # Now decode the full quanta
228 parts = []
229 acc = 0
230 shift = 35
231 for c in s:
232 val = _b32rev.get(c)
233 if val is None:
234 raise TypeError('Non-base32 digit found')
235 acc += _b32rev[c] << shift
236 shift -= 5
237 if shift < 0:
Andrew M. Kuchling6e57c2a2005-06-08 22:51:38 +0000238 parts.append(binascii.unhexlify('%010x' % acc))
Barry Warsaw4c904d12004-01-04 01:12:26 +0000239 acc = 0
240 shift = 35
241 # Process the last, partial quanta
Guido van Rossum4581ae52007-05-22 21:56:47 +0000242 last = binascii.unhexlify(bytes('%010x' % acc))
Andrew M. Kuchling6e57c2a2005-06-08 22:51:38 +0000243 if padchars == 0:
Guido van Rossum4581ae52007-05-22 21:56:47 +0000244 last = b'' # No characters
Andrew M. Kuchling6e57c2a2005-06-08 22:51:38 +0000245 elif padchars == 1:
Barry Warsaw4c904d12004-01-04 01:12:26 +0000246 last = last[:-1]
247 elif padchars == 3:
248 last = last[:-2]
249 elif padchars == 4:
250 last = last[:-3]
251 elif padchars == 6:
252 last = last[:-4]
Andrew M. Kuchling6e57c2a2005-06-08 22:51:38 +0000253 else:
Guido van Rossum4581ae52007-05-22 21:56:47 +0000254 raise binascii.Error('Incorrect padding')
Barry Warsaw4c904d12004-01-04 01:12:26 +0000255 parts.append(last)
Guido van Rossum4581ae52007-05-22 21:56:47 +0000256 return b''.join(parts)
Barry Warsaw4c904d12004-01-04 01:12:26 +0000257
258
259
260# RFC 3548, Base 16 Alphabet specifies uppercase, but hexlify() returns
261# lowercase. The RFC also recommends against accepting input case
262# insensitively.
263def b16encode(s):
Guido van Rossum4581ae52007-05-22 21:56:47 +0000264 """Encode a byte string using Base16.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000265
Guido van Rossum4581ae52007-05-22 21:56:47 +0000266 s is the byte string to encode. The encoded byte string is returned.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000267 """
Guido van Rossum4581ae52007-05-22 21:56:47 +0000268 return bytes(str(binascii.hexlify(s), "ascii").upper(), "ascii")
Barry Warsaw4c904d12004-01-04 01:12:26 +0000269
270
271def b16decode(s, casefold=False):
Guido van Rossum4581ae52007-05-22 21:56:47 +0000272 """Decode a Base16 encoded byte string.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000273
Guido van Rossum4581ae52007-05-22 21:56:47 +0000274 s is the byte string to decode. Optional casefold is a flag
275 specifying whether a lowercase alphabet is acceptable as input.
276 For security purposes, the default is False.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000277
Guido van Rossum4581ae52007-05-22 21:56:47 +0000278 The decoded byte string is returned. binascii.Error is raised if
279 s were incorrectly padded or if there are non-alphabet characters
280 present in the string.
Barry Warsaw4c904d12004-01-04 01:12:26 +0000281 """
Guido van Rossum4581ae52007-05-22 21:56:47 +0000282 if not isinstance(s, bytes):
283 s = bytes(s)
Barry Warsaw4c904d12004-01-04 01:12:26 +0000284 if casefold:
Guido van Rossum4581ae52007-05-22 21:56:47 +0000285 s = bytes(str(s, "ascii").upper(), "ascii")
Barry Warsaw4c904d12004-01-04 01:12:26 +0000286 if re.search('[^0-9A-F]', s):
Guido van Rossum4581ae52007-05-22 21:56:47 +0000287 raise binascii.Error('Non-base16 digit found')
Barry Warsaw4c904d12004-01-04 01:12:26 +0000288 return binascii.unhexlify(s)
289
290
291
292# Legacy interface. This code could be cleaned up since I don't believe
293# binascii has any line length limitations. It just doesn't seem worth it
Guido van Rossum4581ae52007-05-22 21:56:47 +0000294# though. The files should be opened in binary mode.
Skip Montanaroe99d5ea2001-01-20 19:54:20 +0000295
Guido van Rossumf1945461995-06-14 23:43:44 +0000296MAXLINESIZE = 76 # Excluding the CRLF
Guido van Rossum54e54c62001-09-04 19:14:14 +0000297MAXBINSIZE = (MAXLINESIZE//4)*3
Guido van Rossumf1945461995-06-14 23:43:44 +0000298
Guido van Rossumf1945461995-06-14 23:43:44 +0000299def encode(input, output):
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000300 """Encode a file."""
Barry Warsaw4c904d12004-01-04 01:12:26 +0000301 while True:
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000302 s = input.read(MAXBINSIZE)
Barry Warsaw4c904d12004-01-04 01:12:26 +0000303 if not s:
304 break
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000305 while len(s) < MAXBINSIZE:
306 ns = input.read(MAXBINSIZE-len(s))
Barry Warsaw4c904d12004-01-04 01:12:26 +0000307 if not ns:
308 break
309 s += ns
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000310 line = binascii.b2a_base64(s)
311 output.write(line)
Guido van Rossumf1945461995-06-14 23:43:44 +0000312
Barry Warsaw4c904d12004-01-04 01:12:26 +0000313
Guido van Rossumf1945461995-06-14 23:43:44 +0000314def decode(input, output):
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000315 """Decode a file."""
Barry Warsaw4c904d12004-01-04 01:12:26 +0000316 while True:
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000317 line = input.readline()
Barry Warsaw4c904d12004-01-04 01:12:26 +0000318 if not line:
319 break
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000320 s = binascii.a2b_base64(line)
321 output.write(s)
Guido van Rossumf1945461995-06-14 23:43:44 +0000322
Barry Warsaw4c904d12004-01-04 01:12:26 +0000323
Guido van Rossumf1945461995-06-14 23:43:44 +0000324def encodestring(s):
Thomas Wouters89f507f2006-12-13 04:49:30 +0000325 """Encode a string into multiple lines of base-64 data."""
Guido van Rossum4581ae52007-05-22 21:56:47 +0000326 if not isinstance(s, bytes):
327 s = bytes(s)
Peter Schneider-Kampfbb2b4c2001-06-07 18:56:13 +0000328 pieces = []
329 for i in range(0, len(s), MAXBINSIZE):
330 chunk = s[i : i + MAXBINSIZE]
331 pieces.append(binascii.b2a_base64(chunk))
Guido van Rossum4581ae52007-05-22 21:56:47 +0000332 return b"".join(pieces)
Guido van Rossumf1945461995-06-14 23:43:44 +0000333
Barry Warsaw4c904d12004-01-04 01:12:26 +0000334
Guido van Rossumf1945461995-06-14 23:43:44 +0000335def decodestring(s):
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000336 """Decode a string."""
Guido van Rossum4581ae52007-05-22 21:56:47 +0000337 if not isinstance(s, bytes):
338 s = bytes(s)
Peter Schneider-Kampfbb2b4c2001-06-07 18:56:13 +0000339 return binascii.a2b_base64(s)
Guido van Rossumf1945461995-06-14 23:43:44 +0000340
Barry Warsaw4c904d12004-01-04 01:12:26 +0000341
342
Guido van Rossum4581ae52007-05-22 21:56:47 +0000343# Usable as a script...
344def main():
345 """Small main program"""
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000346 import sys, getopt
347 try:
348 opts, args = getopt.getopt(sys.argv[1:], 'deut')
Guido van Rossumb940e112007-01-10 16:19:56 +0000349 except getopt.error as msg:
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000350 sys.stdout = sys.stderr
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000351 print(msg)
352 print("""usage: %s [-d|-e|-u|-t] [file|-]
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000353 -d, -u: decode
354 -e: encode (default)
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000355 -t: encode and decode string 'Aladdin:open sesame'"""%sys.argv[0])
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000356 sys.exit(2)
357 func = encode
358 for o, a in opts:
359 if o == '-e': func = encode
360 if o == '-d': func = decode
361 if o == '-u': func = decode
Guido van Rossum4581ae52007-05-22 21:56:47 +0000362 if o == '-t': test(); return
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000363 if args and args[0] != '-':
364 func(open(args[0], 'rb'), sys.stdout)
365 else:
366 func(sys.stdin, sys.stdout)
Guido van Rossumf1945461995-06-14 23:43:44 +0000367
Barry Warsaw4c904d12004-01-04 01:12:26 +0000368
Guido van Rossum4581ae52007-05-22 21:56:47 +0000369def test():
370 s0 = b"Aladdin:open sesame"
371 print(repr(s0))
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000372 s1 = encodestring(s0)
Guido van Rossum4581ae52007-05-22 21:56:47 +0000373 print(repr(s1))
Guido van Rossum4acc25b2000-02-02 15:10:15 +0000374 s2 = decodestring(s1)
Guido van Rossum4581ae52007-05-22 21:56:47 +0000375 print(repr(s2))
376 assert s0 == s2
Guido van Rossumf1945461995-06-14 23:43:44 +0000377
Barry Warsaw4c904d12004-01-04 01:12:26 +0000378
Guido van Rossumf1945461995-06-14 23:43:44 +0000379if __name__ == '__main__':
Guido van Rossum4581ae52007-05-22 21:56:47 +0000380 main()