2016-09-02 17:20:30 -04:00
|
|
|
try:
|
|
|
|
import uzlib as zlib
|
2017-02-14 17:56:22 -05:00
|
|
|
import uio as io
|
|
|
|
except ImportError:
|
|
|
|
print("SKIP")
|
2017-06-10 13:14:16 -04:00
|
|
|
raise SystemExit
|
2016-09-02 17:20:30 -04:00
|
|
|
|
|
|
|
|
|
|
|
# Raw DEFLATE bitstream
|
2021-03-15 09:57:36 -04:00
|
|
|
buf = io.BytesIO(b"\xcbH\xcd\xc9\xc9\x07\x00")
|
2016-09-04 07:45:27 -04:00
|
|
|
inp = zlib.DecompIO(buf, -8)
|
2016-09-02 17:20:30 -04:00
|
|
|
print(buf.seek(0, 1))
|
|
|
|
print(inp.read(1))
|
|
|
|
print(buf.seek(0, 1))
|
|
|
|
print(inp.read(2))
|
|
|
|
print(inp.read())
|
|
|
|
print(buf.seek(0, 1))
|
|
|
|
print(inp.read(1))
|
|
|
|
print(inp.read())
|
|
|
|
print(buf.seek(0, 1))
|
2016-09-04 07:45:27 -04:00
|
|
|
|
|
|
|
|
|
|
|
# zlib bitstream
|
2021-03-15 09:57:36 -04:00
|
|
|
inp = zlib.DecompIO(io.BytesIO(b"x\x9c30\xa0=\x00\x00\xb3q\x12\xc1"))
|
2016-09-04 07:45:27 -04:00
|
|
|
print(inp.read(10))
|
|
|
|
print(inp.read())
|
|
|
|
|
|
|
|
# zlib bitstream, wrong checksum
|
2021-03-15 09:57:36 -04:00
|
|
|
inp = zlib.DecompIO(io.BytesIO(b"x\x9c30\xa0=\x00\x00\xb3q\x12\xc0"))
|
2016-09-04 07:45:27 -04:00
|
|
|
try:
|
|
|
|
print(inp.read())
|
|
|
|
except OSError as e:
|
|
|
|
print(repr(e))
|