Benjamin Peterson | 90f5ba5 | 2010-03-11 22:53:45 +0000 | [diff] [blame] | 1 | #! /usr/bin/env python3 |
Guido van Rossum | aa925a5 | 1997-04-02 05:47:39 +0000 | [diff] [blame] | 2 | |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 3 | """RFC 3548: Base16, Base32, Base64 Data Encodings""" |
Guido van Rossum | 4acc25b | 2000-02-02 15:10:15 +0000 | [diff] [blame] | 4 | |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 5 | # 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 Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 7 | # Modified 22-May-2007 by Guido van Rossum to use bytes everywhere |
Jack Jansen | 951213e | 1995-10-04 16:39:20 +0000 | [diff] [blame] | 8 | |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 9 | import re |
| 10 | import struct |
Jack Jansen | 951213e | 1995-10-04 16:39:20 +0000 | [diff] [blame] | 11 | import binascii |
| 12 | |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 13 | |
| 14 | __all__ = [ |
| 15 | # Legacy interface exports traditional RFC 1521 Base64 encodings |
Georg Brandl | b54d801 | 2009-06-04 09:11:51 +0000 | [diff] [blame] | 16 | 'encode', 'decode', 'encodebytes', 'decodebytes', |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 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 Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 26 | 'urlsafe_b64encode', 'urlsafe_b64decode', |
| 27 | ] |
| 28 | |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 29 | |
Guido van Rossum | 254348e | 2007-11-21 19:29:53 +0000 | [diff] [blame] | 30 | bytes_types = (bytes, bytearray) # Types acceptable as binary data |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 31 | |
| 32 | |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 33 | def _translate(s, altchars): |
Guido van Rossum | 254348e | 2007-11-21 19:29:53 +0000 | [diff] [blame] | 34 | if not isinstance(s, bytes_types): |
Guido van Rossum | 98b349f | 2007-08-27 21:47:52 +0000 | [diff] [blame] | 35 | raise TypeError("expected bytes, not %s" % s.__class__.__name__) |
Guido van Rossum | 254348e | 2007-11-21 19:29:53 +0000 | [diff] [blame] | 36 | translation = bytearray(range(256)) |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 37 | for k, v in altchars.items(): |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 38 | translation[ord(k)] = v[0] |
| 39 | return s.translate(translation) |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 40 | |
| 41 | |
Antoine Pitrou | fd03645 | 2008-08-19 17:56:33 +0000 | [diff] [blame] | 42 | |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 43 | # Base64 encoding/decoding uses binascii |
| 44 | |
| 45 | def b64encode(s, altchars=None): |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 46 | """Encode a byte string using Base64. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 47 | |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 48 | s is the byte string to encode. Optional altchars must be a byte |
| 49 | string of length 2 which specifies an alternative alphabet for the |
| 50 | '+' and '/' characters. This allows an application to |
| 51 | e.g. generate url or filesystem safe Base64 strings. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 52 | |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 53 | The encoded byte string is returned. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 54 | """ |
Guido van Rossum | 254348e | 2007-11-21 19:29:53 +0000 | [diff] [blame] | 55 | if not isinstance(s, bytes_types): |
Alexandre Vassalotti | 5209857f | 2008-05-03 04:39:38 +0000 | [diff] [blame] | 56 | raise TypeError("expected bytes, not %s" % s.__class__.__name__) |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 57 | # Strip off the trailing newline |
| 58 | encoded = binascii.b2a_base64(s)[:-1] |
| 59 | if altchars is not None: |
Guido van Rossum | 254348e | 2007-11-21 19:29:53 +0000 | [diff] [blame] | 60 | if not isinstance(altchars, bytes_types): |
Alexandre Vassalotti | 5629268 | 2009-06-29 01:13:41 +0000 | [diff] [blame] | 61 | raise TypeError("expected bytes, not %s" |
| 62 | % altchars.__class__.__name__) |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 63 | assert len(altchars) == 2, repr(altchars) |
| 64 | return _translate(encoded, {'+': altchars[0:1], '/': altchars[1:2]}) |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 65 | return encoded |
| 66 | |
| 67 | |
R. David Murray | 6495136 | 2010-11-11 20:09:20 +0000 | [diff] [blame] | 68 | def b64decode(s, altchars=None, validate=False): |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 69 | """Decode a Base64 encoded byte string. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 70 | |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 71 | s is the byte string to decode. Optional altchars must be a |
| 72 | string of length 2 which specifies the alternative alphabet used |
| 73 | instead of the '+' and '/' characters. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 74 | |
R. David Murray | 6495136 | 2010-11-11 20:09:20 +0000 | [diff] [blame] | 75 | The decoded string is returned. A binascii.Error is raised if s is |
| 76 | incorrectly padded. |
| 77 | |
| 78 | If validate is False (the default), non-base64-alphabet characters are |
| 79 | discarded prior to the padding check. If validate is True, |
| 80 | non-base64-alphabet characters in the input result in a binascii.Error. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 81 | """ |
Guido van Rossum | 254348e | 2007-11-21 19:29:53 +0000 | [diff] [blame] | 82 | if not isinstance(s, bytes_types): |
Alexandre Vassalotti | 5209857f | 2008-05-03 04:39:38 +0000 | [diff] [blame] | 83 | raise TypeError("expected bytes, not %s" % s.__class__.__name__) |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 84 | if altchars is not None: |
Guido van Rossum | 254348e | 2007-11-21 19:29:53 +0000 | [diff] [blame] | 85 | if not isinstance(altchars, bytes_types): |
Alexandre Vassalotti | 5209857f | 2008-05-03 04:39:38 +0000 | [diff] [blame] | 86 | raise TypeError("expected bytes, not %s" |
| 87 | % altchars.__class__.__name__) |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 88 | assert len(altchars) == 2, repr(altchars) |
| 89 | s = _translate(s, {chr(altchars[0]): b'+', chr(altchars[1]): b'/'}) |
R. David Murray | 6495136 | 2010-11-11 20:09:20 +0000 | [diff] [blame] | 90 | if validate and not re.match(b'^[A-Za-z0-9+/]*={0,2}$', s): |
| 91 | raise binascii.Error('Non-base64 digit found') |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 92 | return binascii.a2b_base64(s) |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 93 | |
| 94 | |
| 95 | def standard_b64encode(s): |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 96 | """Encode a byte string using the standard Base64 alphabet. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 97 | |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 98 | s is the byte string to encode. The encoded byte string is returned. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 99 | """ |
| 100 | return b64encode(s) |
| 101 | |
| 102 | def standard_b64decode(s): |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 103 | """Decode a byte string encoded with the standard Base64 alphabet. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 104 | |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 105 | s is the byte string to decode. The decoded byte string is |
| 106 | returned. binascii.Error is raised if the input is incorrectly |
| 107 | padded or if there are non-alphabet characters present in the |
| 108 | input. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 109 | """ |
| 110 | return b64decode(s) |
| 111 | |
| 112 | def urlsafe_b64encode(s): |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 113 | """Encode a byte string using a url-safe Base64 alphabet. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 114 | |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 115 | s is the byte string to encode. The encoded byte string is |
| 116 | returned. The alphabet uses '-' instead of '+' and '_' instead of |
| 117 | '/'. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 118 | """ |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 119 | return b64encode(s, b'-_') |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 120 | |
| 121 | def urlsafe_b64decode(s): |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 122 | """Decode a byte string encoded with the standard Base64 alphabet. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 123 | |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 124 | 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 Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 128 | |
| 129 | The alphabet uses '-' instead of '+' and '_' instead of '/'. |
| 130 | """ |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 131 | return b64decode(s, b'-_') |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 132 | |
| 133 | |
Antoine Pitrou | fd03645 | 2008-08-19 17:56:33 +0000 | [diff] [blame] | 134 | |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 135 | # Base32 encoding/decoding must be done in Python |
| 136 | _b32alphabet = { |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 137 | 0: b'A', 9: b'J', 18: b'S', 27: b'3', |
| 138 | 1: b'B', 10: b'K', 19: b'T', 28: b'4', |
| 139 | 2: b'C', 11: b'L', 20: b'U', 29: b'5', |
| 140 | 3: b'D', 12: b'M', 21: b'V', 30: b'6', |
| 141 | 4: b'E', 13: b'N', 22: b'W', 31: b'7', |
| 142 | 5: b'F', 14: b'O', 23: b'X', |
| 143 | 6: b'G', 15: b'P', 24: b'Y', |
| 144 | 7: b'H', 16: b'Q', 25: b'Z', |
| 145 | 8: b'I', 17: b'R', 26: b'2', |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 146 | } |
| 147 | |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 148 | _b32tab = [v[0] for k, v in sorted(_b32alphabet.items())] |
| 149 | _b32rev = dict([(v[0], k) for k, v in _b32alphabet.items()]) |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 150 | |
| 151 | |
| 152 | def b32encode(s): |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 153 | """Encode a byte string using Base32. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 154 | |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 155 | s is the byte string to encode. The encoded byte string is returned. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 156 | """ |
Guido van Rossum | 254348e | 2007-11-21 19:29:53 +0000 | [diff] [blame] | 157 | if not isinstance(s, bytes_types): |
Alexandre Vassalotti | 5209857f | 2008-05-03 04:39:38 +0000 | [diff] [blame] | 158 | raise TypeError("expected bytes, not %s" % s.__class__.__name__) |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 159 | quanta, leftover = divmod(len(s), 5) |
| 160 | # Pad the last quantum with zero bits if necessary |
| 161 | if leftover: |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 162 | s = s + bytes(5 - leftover) # Don't use += ! |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 163 | quanta += 1 |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 164 | encoded = bytes() |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 165 | for i in range(quanta): |
| 166 | # c1 and c2 are 16 bits wide, c3 is 8 bits wide. The intent of this |
| 167 | # code is to process the 40 bits in units of 5 bits. So we take the 1 |
| 168 | # leftover bit of c1 and tack it onto c2. Then we take the 2 leftover |
| 169 | # bits of c2 and tack them onto c3. The shifts and masks are intended |
| 170 | # to give us values of exactly 5 bits in width. |
| 171 | c1, c2, c3 = struct.unpack('!HHB', s[i*5:(i+1)*5]) |
| 172 | c2 += (c1 & 1) << 16 # 17 bits wide |
| 173 | c3 += (c2 & 3) << 8 # 10 bits wide |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 174 | encoded += bytes([_b32tab[c1 >> 11], # bits 1 - 5 |
| 175 | _b32tab[(c1 >> 6) & 0x1f], # bits 6 - 10 |
| 176 | _b32tab[(c1 >> 1) & 0x1f], # bits 11 - 15 |
| 177 | _b32tab[c2 >> 12], # bits 16 - 20 (1 - 5) |
| 178 | _b32tab[(c2 >> 7) & 0x1f], # bits 21 - 25 (6 - 10) |
| 179 | _b32tab[(c2 >> 2) & 0x1f], # bits 26 - 30 (11 - 15) |
| 180 | _b32tab[c3 >> 5], # bits 31 - 35 (1 - 5) |
| 181 | _b32tab[c3 & 0x1f], # bits 36 - 40 (1 - 5) |
| 182 | ]) |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 183 | # Adjust for any leftover partial quanta |
| 184 | if leftover == 1: |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 185 | return encoded[:-6] + b'======' |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 186 | elif leftover == 2: |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 187 | return encoded[:-4] + b'====' |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 188 | elif leftover == 3: |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 189 | return encoded[:-3] + b'===' |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 190 | elif leftover == 4: |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 191 | return encoded[:-1] + b'=' |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 192 | return encoded |
| 193 | |
| 194 | |
| 195 | def b32decode(s, casefold=False, map01=None): |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 196 | """Decode a Base32 encoded byte string. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 197 | |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 198 | s is the byte string to decode. Optional casefold is a flag |
| 199 | specifying whether a lowercase alphabet is acceptable as input. |
| 200 | For security purposes, the default is False. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 201 | |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 202 | RFC 3548 allows for optional mapping of the digit 0 (zero) to the |
| 203 | letter O (oh), and for optional mapping of the digit 1 (one) to |
| 204 | either the letter I (eye) or letter L (el). The optional argument |
| 205 | map01 when not None, specifies which letter the digit 1 should be |
| 206 | mapped to (when map01 is not None, the digit 0 is always mapped to |
| 207 | the letter O). For security purposes the default is None, so that |
| 208 | 0 and 1 are not allowed in the input. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 209 | |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 210 | The decoded byte string is returned. binascii.Error is raised if |
| 211 | the input is incorrectly padded or if there are non-alphabet |
| 212 | characters present in the input. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 213 | """ |
Guido van Rossum | 254348e | 2007-11-21 19:29:53 +0000 | [diff] [blame] | 214 | if not isinstance(s, bytes_types): |
Alexandre Vassalotti | 5209857f | 2008-05-03 04:39:38 +0000 | [diff] [blame] | 215 | raise TypeError("expected bytes, not %s" % s.__class__.__name__) |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 216 | quanta, leftover = divmod(len(s), 8) |
| 217 | if leftover: |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 218 | raise binascii.Error('Incorrect padding') |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 219 | # Handle section 2.4 zero and one mapping. The flag map01 will be either |
| 220 | # False, or the character to map the digit 1 (one) to. It should be |
| 221 | # either L (el) or I (eye). |
Alexandre Vassalotti | 5209857f | 2008-05-03 04:39:38 +0000 | [diff] [blame] | 222 | if map01 is not None: |
Guido van Rossum | 254348e | 2007-11-21 19:29:53 +0000 | [diff] [blame] | 223 | if not isinstance(map01, bytes_types): |
Alexandre Vassalotti | 5209857f | 2008-05-03 04:39:38 +0000 | [diff] [blame] | 224 | raise TypeError("expected bytes, not %s" % map01.__class__.__name__) |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 225 | assert len(map01) == 1, repr(map01) |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 226 | s = _translate(s, {b'0': b'O', b'1': map01}) |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 227 | if casefold: |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 228 | s = s.upper() |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 229 | # Strip off pad characters from the right. We need to count the pad |
| 230 | # characters because this will tell us how many null bytes to remove from |
| 231 | # the end of the decoded string. |
| 232 | padchars = 0 |
Antoine Pitrou | fd03645 | 2008-08-19 17:56:33 +0000 | [diff] [blame] | 233 | mo = re.search(b'(?P<pad>[=]*)$', s) |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 234 | if mo: |
| 235 | padchars = len(mo.group('pad')) |
| 236 | if padchars > 0: |
| 237 | s = s[:-padchars] |
| 238 | # Now decode the full quanta |
| 239 | parts = [] |
| 240 | acc = 0 |
| 241 | shift = 35 |
| 242 | for c in s: |
| 243 | val = _b32rev.get(c) |
| 244 | if val is None: |
| 245 | raise TypeError('Non-base32 digit found') |
| 246 | acc += _b32rev[c] << shift |
| 247 | shift -= 5 |
| 248 | if shift < 0: |
Ezio Melotti | 84befb0 | 2010-07-28 00:23:21 +0000 | [diff] [blame] | 249 | parts.append(binascii.unhexlify(bytes('%010x' % acc, "ascii"))) |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 250 | acc = 0 |
| 251 | shift = 35 |
| 252 | # Process the last, partial quanta |
Guido van Rossum | 09549f4 | 2007-08-27 20:40:10 +0000 | [diff] [blame] | 253 | last = binascii.unhexlify(bytes('%010x' % acc, "ascii")) |
Andrew M. Kuchling | 6e57c2a | 2005-06-08 22:51:38 +0000 | [diff] [blame] | 254 | if padchars == 0: |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 255 | last = b'' # No characters |
Andrew M. Kuchling | 6e57c2a | 2005-06-08 22:51:38 +0000 | [diff] [blame] | 256 | elif padchars == 1: |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 257 | last = last[:-1] |
| 258 | elif padchars == 3: |
| 259 | last = last[:-2] |
| 260 | elif padchars == 4: |
| 261 | last = last[:-3] |
| 262 | elif padchars == 6: |
| 263 | last = last[:-4] |
Andrew M. Kuchling | 6e57c2a | 2005-06-08 22:51:38 +0000 | [diff] [blame] | 264 | else: |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 265 | raise binascii.Error('Incorrect padding') |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 266 | parts.append(last) |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 267 | return b''.join(parts) |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 268 | |
| 269 | |
Antoine Pitrou | fd03645 | 2008-08-19 17:56:33 +0000 | [diff] [blame] | 270 | |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 271 | # RFC 3548, Base 16 Alphabet specifies uppercase, but hexlify() returns |
| 272 | # lowercase. The RFC also recommends against accepting input case |
| 273 | # insensitively. |
| 274 | def b16encode(s): |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 275 | """Encode a byte string using Base16. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 276 | |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 277 | s is the byte string to encode. The encoded byte string is returned. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 278 | """ |
Alexandre Vassalotti | 5209857f | 2008-05-03 04:39:38 +0000 | [diff] [blame] | 279 | if not isinstance(s, bytes_types): |
| 280 | raise TypeError("expected bytes, not %s" % s.__class__.__name__) |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 281 | return binascii.hexlify(s).upper() |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 282 | |
| 283 | |
| 284 | def b16decode(s, casefold=False): |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 285 | """Decode a Base16 encoded byte string. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 286 | |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 287 | s is the byte string to decode. Optional casefold is a flag |
| 288 | specifying whether a lowercase alphabet is acceptable as input. |
| 289 | For security purposes, the default is False. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 290 | |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 291 | The decoded byte string is returned. binascii.Error is raised if |
| 292 | s were incorrectly padded or if there are non-alphabet characters |
| 293 | present in the string. |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 294 | """ |
Guido van Rossum | 254348e | 2007-11-21 19:29:53 +0000 | [diff] [blame] | 295 | if not isinstance(s, bytes_types): |
Alexandre Vassalotti | 5209857f | 2008-05-03 04:39:38 +0000 | [diff] [blame] | 296 | raise TypeError("expected bytes, not %s" % s.__class__.__name__) |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 297 | if casefold: |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 298 | s = s.upper() |
Antoine Pitrou | fd03645 | 2008-08-19 17:56:33 +0000 | [diff] [blame] | 299 | if re.search(b'[^0-9A-F]', s): |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 300 | raise binascii.Error('Non-base16 digit found') |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 301 | return binascii.unhexlify(s) |
| 302 | |
| 303 | |
Antoine Pitrou | fd03645 | 2008-08-19 17:56:33 +0000 | [diff] [blame] | 304 | |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 305 | # Legacy interface. This code could be cleaned up since I don't believe |
| 306 | # binascii has any line length limitations. It just doesn't seem worth it |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 307 | # though. The files should be opened in binary mode. |
Skip Montanaro | e99d5ea | 2001-01-20 19:54:20 +0000 | [diff] [blame] | 308 | |
Guido van Rossum | f194546 | 1995-06-14 23:43:44 +0000 | [diff] [blame] | 309 | MAXLINESIZE = 76 # Excluding the CRLF |
Guido van Rossum | 54e54c6 | 2001-09-04 19:14:14 +0000 | [diff] [blame] | 310 | MAXBINSIZE = (MAXLINESIZE//4)*3 |
Guido van Rossum | f194546 | 1995-06-14 23:43:44 +0000 | [diff] [blame] | 311 | |
Guido van Rossum | f194546 | 1995-06-14 23:43:44 +0000 | [diff] [blame] | 312 | def encode(input, output): |
Guido van Rossum | 54a40cb | 2007-08-27 22:27:41 +0000 | [diff] [blame] | 313 | """Encode a file; input and output are binary files.""" |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 314 | while True: |
Guido van Rossum | 4acc25b | 2000-02-02 15:10:15 +0000 | [diff] [blame] | 315 | s = input.read(MAXBINSIZE) |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 316 | if not s: |
| 317 | break |
Guido van Rossum | 4acc25b | 2000-02-02 15:10:15 +0000 | [diff] [blame] | 318 | while len(s) < MAXBINSIZE: |
| 319 | ns = input.read(MAXBINSIZE-len(s)) |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 320 | if not ns: |
| 321 | break |
| 322 | s += ns |
Guido van Rossum | 4acc25b | 2000-02-02 15:10:15 +0000 | [diff] [blame] | 323 | line = binascii.b2a_base64(s) |
| 324 | output.write(line) |
Guido van Rossum | f194546 | 1995-06-14 23:43:44 +0000 | [diff] [blame] | 325 | |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 326 | |
Guido van Rossum | f194546 | 1995-06-14 23:43:44 +0000 | [diff] [blame] | 327 | def decode(input, output): |
Guido van Rossum | 54a40cb | 2007-08-27 22:27:41 +0000 | [diff] [blame] | 328 | """Decode a file; input and output are binary files.""" |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 329 | while True: |
Guido van Rossum | 4acc25b | 2000-02-02 15:10:15 +0000 | [diff] [blame] | 330 | line = input.readline() |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 331 | if not line: |
| 332 | break |
Guido van Rossum | 4acc25b | 2000-02-02 15:10:15 +0000 | [diff] [blame] | 333 | s = binascii.a2b_base64(line) |
| 334 | output.write(s) |
Guido van Rossum | f194546 | 1995-06-14 23:43:44 +0000 | [diff] [blame] | 335 | |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 336 | |
Georg Brandl | b54d801 | 2009-06-04 09:11:51 +0000 | [diff] [blame] | 337 | def encodebytes(s): |
| 338 | """Encode a bytestring into a bytestring containing multiple lines |
| 339 | of base-64 data.""" |
Guido van Rossum | 254348e | 2007-11-21 19:29:53 +0000 | [diff] [blame] | 340 | if not isinstance(s, bytes_types): |
Guido van Rossum | 98b349f | 2007-08-27 21:47:52 +0000 | [diff] [blame] | 341 | raise TypeError("expected bytes, not %s" % s.__class__.__name__) |
Peter Schneider-Kamp | fbb2b4c | 2001-06-07 18:56:13 +0000 | [diff] [blame] | 342 | pieces = [] |
| 343 | for i in range(0, len(s), MAXBINSIZE): |
| 344 | chunk = s[i : i + MAXBINSIZE] |
| 345 | pieces.append(binascii.b2a_base64(chunk)) |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 346 | return b"".join(pieces) |
Guido van Rossum | f194546 | 1995-06-14 23:43:44 +0000 | [diff] [blame] | 347 | |
Georg Brandl | b54d801 | 2009-06-04 09:11:51 +0000 | [diff] [blame] | 348 | def encodestring(s): |
| 349 | """Legacy alias of encodebytes().""" |
| 350 | import warnings |
| 351 | warnings.warn("encodestring() is a deprecated alias, use encodebytes()", |
| 352 | DeprecationWarning, 2) |
| 353 | return encodebytes(s) |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 354 | |
Guido van Rossum | 54a40cb | 2007-08-27 22:27:41 +0000 | [diff] [blame] | 355 | |
Georg Brandl | b54d801 | 2009-06-04 09:11:51 +0000 | [diff] [blame] | 356 | def decodebytes(s): |
| 357 | """Decode a bytestring of base-64 data into a bytestring.""" |
Guido van Rossum | 254348e | 2007-11-21 19:29:53 +0000 | [diff] [blame] | 358 | if not isinstance(s, bytes_types): |
Guido van Rossum | 98b349f | 2007-08-27 21:47:52 +0000 | [diff] [blame] | 359 | raise TypeError("expected bytes, not %s" % s.__class__.__name__) |
Peter Schneider-Kamp | fbb2b4c | 2001-06-07 18:56:13 +0000 | [diff] [blame] | 360 | return binascii.a2b_base64(s) |
Guido van Rossum | f194546 | 1995-06-14 23:43:44 +0000 | [diff] [blame] | 361 | |
Georg Brandl | b54d801 | 2009-06-04 09:11:51 +0000 | [diff] [blame] | 362 | def decodestring(s): |
| 363 | """Legacy alias of decodebytes().""" |
| 364 | import warnings |
| 365 | warnings.warn("decodestring() is a deprecated alias, use decodebytes()", |
| 366 | DeprecationWarning, 2) |
| 367 | return decodebytes(s) |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 368 | |
Antoine Pitrou | fd03645 | 2008-08-19 17:56:33 +0000 | [diff] [blame] | 369 | |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 370 | # Usable as a script... |
| 371 | def main(): |
| 372 | """Small main program""" |
Guido van Rossum | 4acc25b | 2000-02-02 15:10:15 +0000 | [diff] [blame] | 373 | import sys, getopt |
| 374 | try: |
| 375 | opts, args = getopt.getopt(sys.argv[1:], 'deut') |
Guido van Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 376 | except getopt.error as msg: |
Guido van Rossum | 4acc25b | 2000-02-02 15:10:15 +0000 | [diff] [blame] | 377 | sys.stdout = sys.stderr |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 378 | print(msg) |
| 379 | print("""usage: %s [-d|-e|-u|-t] [file|-] |
Guido van Rossum | 4acc25b | 2000-02-02 15:10:15 +0000 | [diff] [blame] | 380 | -d, -u: decode |
| 381 | -e: encode (default) |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 382 | -t: encode and decode string 'Aladdin:open sesame'"""%sys.argv[0]) |
Guido van Rossum | 4acc25b | 2000-02-02 15:10:15 +0000 | [diff] [blame] | 383 | sys.exit(2) |
| 384 | func = encode |
| 385 | for o, a in opts: |
| 386 | if o == '-e': func = encode |
| 387 | if o == '-d': func = decode |
| 388 | if o == '-u': func = decode |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 389 | if o == '-t': test(); return |
Guido van Rossum | 4acc25b | 2000-02-02 15:10:15 +0000 | [diff] [blame] | 390 | if args and args[0] != '-': |
Antoine Pitrou | b86680e | 2010-10-14 21:15:17 +0000 | [diff] [blame] | 391 | with open(args[0], 'rb') as f: |
| 392 | func(f, sys.stdout.buffer) |
Guido van Rossum | 4acc25b | 2000-02-02 15:10:15 +0000 | [diff] [blame] | 393 | else: |
Victor Stinner | 479736b | 2010-05-25 21:12:34 +0000 | [diff] [blame] | 394 | func(sys.stdin.buffer, sys.stdout.buffer) |
Guido van Rossum | f194546 | 1995-06-14 23:43:44 +0000 | [diff] [blame] | 395 | |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 396 | |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 397 | def test(): |
| 398 | s0 = b"Aladdin:open sesame" |
| 399 | print(repr(s0)) |
Georg Brandl | 706824f | 2009-06-04 09:42:55 +0000 | [diff] [blame] | 400 | s1 = encodebytes(s0) |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 401 | print(repr(s1)) |
Georg Brandl | 706824f | 2009-06-04 09:42:55 +0000 | [diff] [blame] | 402 | s2 = decodebytes(s1) |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 403 | print(repr(s2)) |
| 404 | assert s0 == s2 |
Guido van Rossum | f194546 | 1995-06-14 23:43:44 +0000 | [diff] [blame] | 405 | |
Barry Warsaw | 4c904d1 | 2004-01-04 01:12:26 +0000 | [diff] [blame] | 406 | |
Guido van Rossum | f194546 | 1995-06-14 23:43:44 +0000 | [diff] [blame] | 407 | if __name__ == '__main__': |
Guido van Rossum | 4581ae5 | 2007-05-22 21:56:47 +0000 | [diff] [blame] | 408 | main() |