- Notifications
You must be signed in to change notification settings - Fork 31.7k
/
Copy pathbase64.py
executable file
·611 lines (516 loc) · 21.1 KB
/
base64.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
#! /usr/bin/env python3
"""Base16, Base32, Base64 (RFC 3548), Base85 and Ascii85 data encodings"""
# Modified 04-Oct-1995 by Jack Jansen to use binascii module
# Modified 30-Dec-2003 by Barry Warsaw to add full RFC 3548 support
# Modified 22-May-2007 by Guido van Rossum to use bytes everywhere
importre
importstruct
importbinascii
__all__= [
# Legacy interface exports traditional RFC 2045 Base64 encodings
'encode', 'decode', 'encodebytes', 'decodebytes',
# Generalized interface for other encodings
'b64encode', 'b64decode', 'b32encode', 'b32decode',
'b32hexencode', 'b32hexdecode', 'b16encode', 'b16decode',
# Base85 and Ascii85 encodings
'b85encode', 'b85decode', 'a85encode', 'a85decode', 'z85encode', 'z85decode',
# Standard Base64 encoding
'standard_b64encode', 'standard_b64decode',
# Some common Base64 alternatives. As referenced by RFC 3458, see thread
# starting at:
#
# http://zgp.org/pipermail/p2p-hackers/2001-September/000316.html
'urlsafe_b64encode', 'urlsafe_b64decode',
]
bytes_types= (bytes, bytearray) # Types acceptable as binary data
def_bytes_from_decode_data(s):
ifisinstance(s, str):
try:
returns.encode('ascii')
exceptUnicodeEncodeError:
raiseValueError('string argument should contain only ASCII characters')
ifisinstance(s, bytes_types):
returns
try:
returnmemoryview(s).tobytes()
exceptTypeError:
raiseTypeError("argument should be a bytes-like object or ASCII "
"string, not %r"%s.__class__.__name__) fromNone
# Base64 encoding/decoding uses binascii
defb64encode(s, altchars=None):
"""Encode the bytes-like object s using Base64 and return a bytes object.
Optional altchars should be a byte string of length 2 which specifies an
alternative alphabet for the '+' and '/' characters. This allows an
application to e.g. generate url or filesystem safe Base64 strings.
"""
encoded=binascii.b2a_base64(s, newline=False)
ifaltcharsisnotNone:
assertlen(altchars) ==2, repr(altchars)
returnencoded.translate(bytes.maketrans(b'+/', altchars))
returnencoded
defb64decode(s, altchars=None, validate=False):
"""Decode the Base64 encoded bytes-like object or ASCII string s.
Optional altchars must be a bytes-like object or ASCII string of length 2
which specifies the alternative alphabet used instead of the '+' and '/'
characters.
The result is returned as a bytes object. A binascii.Error is raised if
s is incorrectly padded.
If validate is False (the default), characters that are neither in the
normal base-64 alphabet nor the alternative alphabet are discarded prior
to the padding check. If validate is True, these non-alphabet characters
in the input result in a binascii.Error.
For more information about the strict base64 check, see:
https://docs.python.org/3.11/library/binascii.html#binascii.a2b_base64
"""
s=_bytes_from_decode_data(s)
ifaltcharsisnotNone:
altchars=_bytes_from_decode_data(altchars)
assertlen(altchars) ==2, repr(altchars)
s=s.translate(bytes.maketrans(altchars, b'+/'))
returnbinascii.a2b_base64(s, strict_mode=validate)
defstandard_b64encode(s):
"""Encode bytes-like object s using the standard Base64 alphabet.
The result is returned as a bytes object.
"""
returnb64encode(s)
defstandard_b64decode(s):
"""Decode bytes encoded with the standard Base64 alphabet.
Argument s is a bytes-like object or ASCII string to decode. The result
is returned as a bytes object. A binascii.Error is raised if the input
is incorrectly padded. Characters that are not in the standard alphabet
are discarded prior to the padding check.
"""
returnb64decode(s)
_urlsafe_encode_translation=bytes.maketrans(b'+/', b'-_')
_urlsafe_decode_translation=bytes.maketrans(b'-_', b'+/')
defurlsafe_b64encode(s):
"""Encode bytes using the URL- and filesystem-safe Base64 alphabet.
Argument s is a bytes-like object to encode. The result is returned as a
bytes object. The alphabet uses '-' instead of '+' and '_' instead of
'/'.
"""
returnb64encode(s).translate(_urlsafe_encode_translation)
defurlsafe_b64decode(s):
"""Decode bytes using the URL- and filesystem-safe Base64 alphabet.
Argument s is a bytes-like object or ASCII string to decode. The result
is returned as a bytes object. A binascii.Error is raised if the input
is incorrectly padded. Characters that are not in the URL-safe base-64
alphabet, and are not a plus '+' or slash '/', are discarded prior to the
padding check.
The alphabet uses '-' instead of '+' and '_' instead of '/'.
"""
s=_bytes_from_decode_data(s)
s=s.translate(_urlsafe_decode_translation)
returnb64decode(s)
# Base32 encoding/decoding must be done in Python
_B32_ENCODE_DOCSTRING='''
Encode the bytes-like objects using {encoding} and return a bytes object.
'''
_B32_DECODE_DOCSTRING='''
Decode the {encoding} encoded bytes-like object or ASCII string s.
Optional casefold is a flag specifying whether a lowercase alphabet is
acceptable as input. For security purposes, the default is False.
{extra_args}
The result is returned as a bytes object. A binascii.Error is raised if
the input is incorrectly padded or if there are non-alphabet
characters present in the input.
'''
_B32_DECODE_MAP01_DOCSTRING='''
RFC 3548 allows for optional mapping of the digit 0 (zero) to the
letter O (oh), and for optional mapping of the digit 1 (one) to
either the letter I (eye) or letter L (el). The optional argument
map01 when not None, specifies which letter the digit 1 should be
mapped to (when map01 is not None, the digit 0 is always mapped to
the letter O). For security purposes the default is None, so that
0 and 1 are not allowed in the input.
'''
_b32alphabet=b'ABCDEFGHIJKLMNOPQRSTUVWXYZ234567'
_b32hexalphabet=b'0123456789ABCDEFGHIJKLMNOPQRSTUV'
_b32tab2= {}
_b32rev= {}
def_b32encode(alphabet, s):
# Delay the initialization of the table to not waste memory
# if the function is never called
ifalphabetnotin_b32tab2:
b32tab= [bytes((i,)) foriinalphabet]
_b32tab2[alphabet] = [a+bforainb32tabforbinb32tab]
b32tab=None
ifnotisinstance(s, bytes_types):
s=memoryview(s).tobytes()
leftover=len(s) %5
# Pad the last quantum with zero bits if necessary
ifleftover:
s=s+b'\0'* (5-leftover) # Don't use += !
encoded=bytearray()
from_bytes=int.from_bytes
b32tab2=_b32tab2[alphabet]
foriinrange(0, len(s), 5):
c=from_bytes(s[i: i+5]) # big endian
encoded+= (b32tab2[c>>30] +# bits 1 - 10
b32tab2[(c>>20) &0x3ff] +# bits 11 - 20
b32tab2[(c>>10) &0x3ff] +# bits 21 - 30
b32tab2[c&0x3ff] # bits 31 - 40
)
# Adjust for any leftover partial quanta
ifleftover==1:
encoded[-6:] =b'======'
elifleftover==2:
encoded[-4:] =b'===='
elifleftover==3:
encoded[-3:] =b'==='
elifleftover==4:
encoded[-1:] =b'='
returnbytes(encoded)
def_b32decode(alphabet, s, casefold=False, map01=None):
# Delay the initialization of the table to not waste memory
# if the function is never called
ifalphabetnotin_b32rev:
_b32rev[alphabet] = {v: kfork, vinenumerate(alphabet)}
s=_bytes_from_decode_data(s)
iflen(s) %8:
raisebinascii.Error('Incorrect padding')
# Handle section 2.4 zero and one mapping. The flag map01 will be either
# False, or the character to map the digit 1 (one) to. It should be
# either L (el) or I (eye).
ifmap01isnotNone:
map01=_bytes_from_decode_data(map01)
assertlen(map01) ==1, repr(map01)
s=s.translate(bytes.maketrans(b'01', b'O'+map01))
ifcasefold:
s=s.upper()
# Strip off pad characters from the right. We need to count the pad
# characters because this will tell us how many null bytes to remove from
# the end of the decoded string.
l=len(s)
s=s.rstrip(b'=')
padchars=l-len(s)
# Now decode the full quanta
decoded=bytearray()
b32rev=_b32rev[alphabet]
foriinrange(0, len(s), 8):
quanta=s[i: i+8]
acc=0
try:
forcinquanta:
acc= (acc<<5) +b32rev[c]
exceptKeyError:
raisebinascii.Error('Non-base32 digit found') fromNone
decoded+=acc.to_bytes(5) # big endian
# Process the last, partial quanta
ifl%8orpadcharsnotin {0, 1, 3, 4, 6}:
raisebinascii.Error('Incorrect padding')
ifpadcharsanddecoded:
acc<<=5*padchars
last=acc.to_bytes(5) # big endian
leftover= (43-5*padchars) //8# 1: 4, 3: 3, 4: 2, 6: 1
decoded[-5:] =last[:leftover]
returnbytes(decoded)
defb32encode(s):
return_b32encode(_b32alphabet, s)
b32encode.__doc__=_B32_ENCODE_DOCSTRING.format(encoding='base32')
defb32decode(s, casefold=False, map01=None):
return_b32decode(_b32alphabet, s, casefold, map01)
b32decode.__doc__=_B32_DECODE_DOCSTRING.format(encoding='base32',
extra_args=_B32_DECODE_MAP01_DOCSTRING)
defb32hexencode(s):
return_b32encode(_b32hexalphabet, s)
b32hexencode.__doc__=_B32_ENCODE_DOCSTRING.format(encoding='base32hex')
defb32hexdecode(s, casefold=False):
# base32hex does not have the 01 mapping
return_b32decode(_b32hexalphabet, s, casefold)
b32hexdecode.__doc__=_B32_DECODE_DOCSTRING.format(encoding='base32hex',
extra_args='')
# RFC 3548, Base 16 Alphabet specifies uppercase, but hexlify() returns
# lowercase. The RFC also recommends against accepting input case
# insensitively.
defb16encode(s):
"""Encode the bytes-like object s using Base16 and return a bytes object.
"""
returnbinascii.hexlify(s).upper()
defb16decode(s, casefold=False):
"""Decode the Base16 encoded bytes-like object or ASCII string s.
Optional casefold is a flag specifying whether a lowercase alphabet is
acceptable as input. For security purposes, the default is False.
The result is returned as a bytes object. A binascii.Error is raised if
s is incorrectly padded or if there are non-alphabet characters present
in the input.
"""
s=_bytes_from_decode_data(s)
ifcasefold:
s=s.upper()
ifre.search(b'[^0-9A-F]', s):
raisebinascii.Error('Non-base16 digit found')
returnbinascii.unhexlify(s)
#
# Ascii85 encoding/decoding
#
_a85chars=None
_a85chars2=None
_A85START=b"<~"
_A85END=b"~>"
def_85encode(b, chars, chars2, pad=False, foldnuls=False, foldspaces=False):
# Helper function for a85encode and b85encode
ifnotisinstance(b, bytes_types):
b=memoryview(b).tobytes()
padding= (-len(b)) %4
ifpadding:
b=b+b'\0'*padding
words=struct.Struct('!%dI'% (len(b) //4)).unpack(b)
chunks= [b'z'iffoldnulsandnotwordelse
b'y'iffoldspacesandword==0x20202020else
(chars2[word//614125] +
chars2[word//85%7225] +
chars[word%85])
forwordinwords]
ifpaddingandnotpad:
ifchunks[-1] ==b'z':
chunks[-1] =chars[0] *5
chunks[-1] =chunks[-1][:-padding]
returnb''.join(chunks)
defa85encode(b, *, foldspaces=False, wrapcol=0, pad=False, adobe=False):
"""Encode bytes-like object b using Ascii85 and return a bytes object.
foldspaces is an optional flag that uses the special short sequence 'y'
instead of 4 consecutive spaces (ASCII 0x20) as supported by 'btoa'. This
feature is not supported by the "standard" Adobe encoding.
wrapcol controls whether the output should have newline (b'\\n') characters
added to it. If this is non-zero, each output line will be at most this
many characters long, excluding the trailing newline.
pad controls whether the input is padded to a multiple of 4 before
encoding. Note that the btoa implementation always pads.
adobe controls whether the encoded byte sequence is framed with <~ and ~>,
which is used by the Adobe implementation.
"""
global_a85chars, _a85chars2
# Delay the initialization of tables to not waste memory
# if the function is never called
if_a85chars2isNone:
_a85chars= [bytes((i,)) foriinrange(33, 118)]
_a85chars2= [(a+b) forain_a85charsforbin_a85chars]
result=_85encode(b, _a85chars, _a85chars2, pad, True, foldspaces)
ifadobe:
result=_A85START+result
ifwrapcol:
wrapcol=max(2ifadobeelse1, wrapcol)
chunks= [result[i: i+wrapcol]
foriinrange(0, len(result), wrapcol)]
ifadobe:
iflen(chunks[-1]) +2>wrapcol:
chunks.append(b'')
result=b'\n'.join(chunks)
ifadobe:
result+=_A85END
returnresult
defa85decode(b, *, foldspaces=False, adobe=False, ignorechars=b' \t\n\r\v'):
"""Decode the Ascii85 encoded bytes-like object or ASCII string b.
foldspaces is a flag that specifies whether the 'y' short sequence should be
accepted as shorthand for 4 consecutive spaces (ASCII 0x20). This feature is
not supported by the "standard" Adobe encoding.
adobe controls whether the input sequence is in Adobe Ascii85 format (i.e.
is framed with <~ and ~>).
ignorechars should be a byte string containing characters to ignore from the
input. This should only contain whitespace characters, and by default
contains all whitespace characters in ASCII.
The result is returned as a bytes object.
"""
b=_bytes_from_decode_data(b)
ifadobe:
ifnotb.endswith(_A85END):
raiseValueError(
"Ascii85 encoded byte sequences must end "
"with {!r}".format(_A85END)
)
ifb.startswith(_A85START):
b=b[2:-2] # Strip off start/end markers
else:
b=b[:-2]
#
# We have to go through this stepwise, so as to ignore spaces and handle
# special short sequences
#
packI=struct.Struct('!I').pack
decoded= []
decoded_append=decoded.append
curr= []
curr_append=curr.append
curr_clear=curr.clear
forxinb+b'u'*4:
ifb'!'[0] <=x<=b'u'[0]:
curr_append(x)
iflen(curr) ==5:
acc=0
forxincurr:
acc=85*acc+ (x-33)
try:
decoded_append(packI(acc))
exceptstruct.error:
raiseValueError('Ascii85 overflow') fromNone
curr_clear()
elifx==b'z'[0]:
ifcurr:
raiseValueError('z inside Ascii85 5-tuple')
decoded_append(b'\0\0\0\0')
eliffoldspacesandx==b'y'[0]:
ifcurr:
raiseValueError('y inside Ascii85 5-tuple')
decoded_append(b'\x20\x20\x20\x20')
elifxinignorechars:
# Skip whitespace
continue
else:
raiseValueError('Non-Ascii85 digit found: %c'%x)
result=b''.join(decoded)
padding=4-len(curr)
ifpadding:
# Throw away the extra padding
result=result[:-padding]
returnresult
# The following code is originally taken (with permission) from Mercurial
_b85alphabet= (b"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
b"abcdefghijklmnopqrstuvwxyz!#$%&()*+-;<=>?@^_`{|}~")
_b85chars=None
_b85chars2=None
_b85dec=None
defb85encode(b, pad=False):
"""Encode bytes-like object b in base85 format and return a bytes object.
If pad is true, the input is padded with b'\\0' so its length is a multiple of
4 bytes before encoding.
"""
global_b85chars, _b85chars2
# Delay the initialization of tables to not waste memory
# if the function is never called
if_b85chars2isNone:
_b85chars= [bytes((i,)) foriin_b85alphabet]
_b85chars2= [(a+b) forain_b85charsforbin_b85chars]
return_85encode(b, _b85chars, _b85chars2, pad)
defb85decode(b):
"""Decode the base85-encoded bytes-like object or ASCII string b
The result is returned as a bytes object.
"""
global_b85dec
# Delay the initialization of tables to not waste memory
# if the function is never called
if_b85decisNone:
_b85dec= [None] *256
fori, cinenumerate(_b85alphabet):
_b85dec[c] =i
b=_bytes_from_decode_data(b)
padding= (-len(b)) %5
b=b+b'~'*padding
out= []
packI=struct.Struct('!I').pack
foriinrange(0, len(b), 5):
chunk=b[i:i+5]
acc=0
try:
forcinchunk:
acc=acc*85+_b85dec[c]
exceptTypeError:
forj, cinenumerate(chunk):
if_b85dec[c] isNone:
raiseValueError('bad base85 character at position %d'
% (i+j)) fromNone
raise
try:
out.append(packI(acc))
exceptstruct.error:
raiseValueError('base85 overflow in hunk starting at byte %d'
%i) fromNone
result=b''.join(out)
ifpadding:
result=result[:-padding]
returnresult
_z85alphabet= (b'0123456789abcdefghijklmnopqrstuvwxyz'
b'ABCDEFGHIJKLMNOPQRSTUVWXYZ.-:+=^!/*?&<>()[]{}@%$#')
# Translating b85 valid but z85 invalid chars to b'\x00' is required
# to prevent them from being decoded as b85 valid chars.
_z85_b85_decode_diff=b';_`|~'
_z85_decode_translation=bytes.maketrans(
_z85alphabet+_z85_b85_decode_diff,
_b85alphabet+b'\x00'*len(_z85_b85_decode_diff)
)
_z85_encode_translation=bytes.maketrans(_b85alphabet, _z85alphabet)
defz85encode(s):
"""Encode bytes-like object b in z85 format and return a bytes object."""
returnb85encode(s).translate(_z85_encode_translation)
defz85decode(s):
"""Decode the z85-encoded bytes-like object or ASCII string b
The result is returned as a bytes object.
"""
s=_bytes_from_decode_data(s)
s=s.translate(_z85_decode_translation)
try:
returnb85decode(s)
exceptValueErrorase:
raiseValueError(e.args[0].replace('base85', 'z85')) fromNone
# Legacy interface. This code could be cleaned up since I don't believe
# binascii has any line length limitations. It just doesn't seem worth it
# though. The files should be opened in binary mode.
MAXLINESIZE=76# Excluding the CRLF
MAXBINSIZE= (MAXLINESIZE//4)*3
defencode(input, output):
"""Encode a file; input and output are binary files."""
whiles:=input.read(MAXBINSIZE):
whilelen(s) <MAXBINSIZEand (ns:=input.read(MAXBINSIZE-len(s))):
s+=ns
line=binascii.b2a_base64(s)
output.write(line)
defdecode(input, output):
"""Decode a file; input and output are binary files."""
whileline:=input.readline():
s=binascii.a2b_base64(line)
output.write(s)
def_input_type_check(s):
try:
m=memoryview(s)
exceptTypeErroraserr:
msg="expected bytes-like object, not %s"%s.__class__.__name__
raiseTypeError(msg) fromerr
ifm.formatnotin ('c', 'b', 'B'):
msg= ("expected single byte elements, not %r from %s"%
(m.format, s.__class__.__name__))
raiseTypeError(msg)
ifm.ndim!=1:
msg= ("expected 1-D data, not %d-D data from %s"%
(m.ndim, s.__class__.__name__))
raiseTypeError(msg)
defencodebytes(s):
"""Encode a bytestring into a bytes object containing multiple lines
of base-64 data."""
_input_type_check(s)
pieces= []
foriinrange(0, len(s), MAXBINSIZE):
chunk=s[i : i+MAXBINSIZE]
pieces.append(binascii.b2a_base64(chunk))
returnb"".join(pieces)
defdecodebytes(s):
"""Decode a bytestring of base-64 data into a bytes object."""
_input_type_check(s)
returnbinascii.a2b_base64(s)
# Usable as a script...
defmain():
"""Small main program"""
importsys, getopt
usage=f"""usage: {sys.argv[0]} [-h|-d|-e|-u] [file|-]
-h: print this help message and exit
-d, -u: decode
-e: encode (default)"""
try:
opts, args=getopt.getopt(sys.argv[1:], 'hdeu')
exceptgetopt.errorasmsg:
sys.stdout=sys.stderr
print(msg)
print(usage)
sys.exit(2)
func=encode
foro, ainopts:
ifo=='-e': func=encode
ifo=='-d': func=decode
ifo=='-u': func=decode
ifo=='-h': print(usage); return
ifargsandargs[0] !='-':
withopen(args[0], 'rb') asf:
func(f, sys.stdout.buffer)
else:
func(sys.stdin.buffer, sys.stdout.buffer)
if__name__=='__main__':
main()