├── .coveragerc ├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .pylintrc ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── doc ├── Makefile ├── api.rst ├── conf.py ├── faq.rst ├── index.rst ├── make.bat ├── news.rst └── note.awk ├── dumprar.py ├── etc └── requirements.build.txt ├── rarfile.py ├── setup.cfg ├── setup.py ├── test ├── __init__.py ├── files │ ├── ctime0.rar │ ├── ctime0.rar.exp │ ├── ctime1.rar │ ├── ctime1.rar.exp │ ├── ctime2.rar │ ├── ctime2.rar.exp │ ├── ctime3.rar │ ├── ctime3.rar.exp │ ├── ctime4.rar │ ├── ctime4.rar.exp │ ├── ctime5.rar │ ├── ctime5.rar.exp │ ├── rar15-comment-lock.rar │ ├── rar15-comment-lock.rar.exp │ ├── rar15-comment.rar │ ├── rar15-comment.rar.exp │ ├── rar202-comment-nopsw.rar │ ├── rar202-comment-nopsw.rar.exp │ ├── rar202-comment-psw.rar │ ├── rar202-comment-psw.rar.exp │ ├── rar3-comment-hpsw.rar │ ├── rar3-comment-hpsw.rar.exp │ ├── rar3-comment-plain.rar │ ├── rar3-comment-plain.rar.exp │ ├── rar3-comment-psw.rar │ ├── rar3-comment-psw.rar.exp │ ├── rar3-old.r00 │ ├── rar3-old.r01 │ ├── rar3-old.rar │ ├── rar3-old.rar.exp │ ├── rar3-owner.rar │ ├── rar3-owner.rar.exp │ ├── rar3-readonly-unix.rar │ ├── rar3-readonly-unix.rar.exp │ ├── rar3-readonly-win.rar │ ├── rar3-readonly-win.rar.exp │ ├── rar3-seektest.sfx │ ├── rar3-solid.rar │ ├── rar3-solid.rar.exp │ ├── rar3-subdirs.rar │ ├── rar3-subdirs.rar.exp │ ├── rar3-symlink-unix.rar │ ├── rar3-symlink-unix.rar.exp │ ├── rar3-versions.rar │ ├── rar3-versions.rar.exp │ ├── rar3-vols.part1.rar │ ├── rar3-vols.part1.rar.exp │ ├── rar3-vols.part2.rar │ ├── rar3-vols.part2.rar.exp │ ├── rar3-vols.part3.rar │ ├── rar3-vols.part3.rar.exp │ ├── rar5-blake.rar │ ├── rar5-blake.rar.exp │ ├── rar5-crc.rar │ ├── rar5-crc.rar.exp │ ├── rar5-crc.sfx │ ├── rar5-dups.rar │ ├── rar5-dups.rar.exp │ ├── rar5-hlink.rar │ ├── rar5-hlink.rar.exp │ ├── rar5-hpsw.rar │ ├── rar5-hpsw.rar.exp │ ├── rar5-owner.rar │ ├── rar5-owner.rar.exp │ ├── rar5-psw-blake.rar │ ├── rar5-psw-blake.rar.exp │ ├── rar5-psw.rar │ ├── rar5-psw.rar.exp │ ├── rar5-quick-open.rar │ ├── rar5-quick-open.rar.exp │ ├── rar5-readonly-unix.rar │ ├── rar5-readonly-unix.rar.exp │ ├── rar5-readonly-win.rar │ ├── rar5-readonly-win.rar.exp │ ├── rar5-solid-qo.rar │ ├── rar5-solid-qo.rar.exp │ ├── rar5-solid.rar │ ├── rar5-solid.rar.exp │ ├── rar5-subdirs.rar │ ├── rar5-subdirs.rar.exp │ ├── rar5-symlink-unix.rar │ ├── rar5-symlink-unix.rar.exp │ ├── rar5-symlink-win.rar │ ├── rar5-symlink-win.rar.exp │ ├── rar5-times.rar │ ├── rar5-times.rar.exp │ ├── rar5-times2.rar │ ├── rar5-times2.rar.exp │ ├── rar5-versions.rar │ ├── rar5-versions.rar.exp │ ├── rar5-vols.part1.rar │ ├── rar5-vols.part1.rar.exp │ ├── rar5-vols.part2.rar │ ├── rar5-vols.part2.rar.exp │ ├── rar5-vols.part3.rar │ ├── rar5-vols.part3.rar.exp │ ├── seektest.rar │ ├── seektest.rar.exp │ ├── unicode.rar │ ├── unicode.rar.exp │ ├── unicode2.rar │ └── unicode2.rar.exp ├── run_dump.sh ├── run_dump_all.sh ├── test_api.py ├── test_compat.py ├── test_crypto.py ├── test_extract.py ├── test_format.py ├── test_hashing.py ├── test_korrupt.py ├── test_reading.py ├── test_seek.py ├── test_tool.py └── test_util.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/README.rst -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/doc/api.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/doc/faq.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/news.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/doc/news.rst -------------------------------------------------------------------------------- /doc/note.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/doc/note.awk -------------------------------------------------------------------------------- /dumprar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/dumprar.py -------------------------------------------------------------------------------- /etc/requirements.build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/etc/requirements.build.txt -------------------------------------------------------------------------------- /rarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/rarfile.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/files/ctime0.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/ctime0.rar -------------------------------------------------------------------------------- /test/files/ctime0.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/ctime0.rar.exp -------------------------------------------------------------------------------- /test/files/ctime1.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/ctime1.rar -------------------------------------------------------------------------------- /test/files/ctime1.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/ctime1.rar.exp -------------------------------------------------------------------------------- /test/files/ctime2.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/ctime2.rar -------------------------------------------------------------------------------- /test/files/ctime2.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/ctime2.rar.exp -------------------------------------------------------------------------------- /test/files/ctime3.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/ctime3.rar -------------------------------------------------------------------------------- /test/files/ctime3.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/ctime3.rar.exp -------------------------------------------------------------------------------- /test/files/ctime4.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/ctime4.rar -------------------------------------------------------------------------------- /test/files/ctime4.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/ctime4.rar.exp -------------------------------------------------------------------------------- /test/files/ctime5.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/ctime5.rar -------------------------------------------------------------------------------- /test/files/ctime5.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/ctime5.rar.exp -------------------------------------------------------------------------------- /test/files/rar15-comment-lock.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar15-comment-lock.rar -------------------------------------------------------------------------------- /test/files/rar15-comment-lock.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar15-comment-lock.rar.exp -------------------------------------------------------------------------------- /test/files/rar15-comment.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar15-comment.rar -------------------------------------------------------------------------------- /test/files/rar15-comment.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar15-comment.rar.exp -------------------------------------------------------------------------------- /test/files/rar202-comment-nopsw.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar202-comment-nopsw.rar -------------------------------------------------------------------------------- /test/files/rar202-comment-nopsw.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar202-comment-nopsw.rar.exp -------------------------------------------------------------------------------- /test/files/rar202-comment-psw.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar202-comment-psw.rar -------------------------------------------------------------------------------- /test/files/rar202-comment-psw.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar202-comment-psw.rar.exp -------------------------------------------------------------------------------- /test/files/rar3-comment-hpsw.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-comment-hpsw.rar -------------------------------------------------------------------------------- /test/files/rar3-comment-hpsw.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-comment-hpsw.rar.exp -------------------------------------------------------------------------------- /test/files/rar3-comment-plain.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-comment-plain.rar -------------------------------------------------------------------------------- /test/files/rar3-comment-plain.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-comment-plain.rar.exp -------------------------------------------------------------------------------- /test/files/rar3-comment-psw.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-comment-psw.rar -------------------------------------------------------------------------------- /test/files/rar3-comment-psw.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-comment-psw.rar.exp -------------------------------------------------------------------------------- /test/files/rar3-old.r00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-old.r00 -------------------------------------------------------------------------------- /test/files/rar3-old.r01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-old.r01 -------------------------------------------------------------------------------- /test/files/rar3-old.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-old.rar -------------------------------------------------------------------------------- /test/files/rar3-old.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-old.rar.exp -------------------------------------------------------------------------------- /test/files/rar3-owner.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-owner.rar -------------------------------------------------------------------------------- /test/files/rar3-owner.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-owner.rar.exp -------------------------------------------------------------------------------- /test/files/rar3-readonly-unix.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-readonly-unix.rar -------------------------------------------------------------------------------- /test/files/rar3-readonly-unix.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-readonly-unix.rar.exp -------------------------------------------------------------------------------- /test/files/rar3-readonly-win.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-readonly-win.rar -------------------------------------------------------------------------------- /test/files/rar3-readonly-win.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-readonly-win.rar.exp -------------------------------------------------------------------------------- /test/files/rar3-seektest.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-seektest.sfx -------------------------------------------------------------------------------- /test/files/rar3-solid.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-solid.rar -------------------------------------------------------------------------------- /test/files/rar3-solid.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-solid.rar.exp -------------------------------------------------------------------------------- /test/files/rar3-subdirs.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-subdirs.rar -------------------------------------------------------------------------------- /test/files/rar3-subdirs.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-subdirs.rar.exp -------------------------------------------------------------------------------- /test/files/rar3-symlink-unix.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-symlink-unix.rar -------------------------------------------------------------------------------- /test/files/rar3-symlink-unix.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-symlink-unix.rar.exp -------------------------------------------------------------------------------- /test/files/rar3-versions.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-versions.rar -------------------------------------------------------------------------------- /test/files/rar3-versions.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-versions.rar.exp -------------------------------------------------------------------------------- /test/files/rar3-vols.part1.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-vols.part1.rar -------------------------------------------------------------------------------- /test/files/rar3-vols.part1.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-vols.part1.rar.exp -------------------------------------------------------------------------------- /test/files/rar3-vols.part2.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-vols.part2.rar -------------------------------------------------------------------------------- /test/files/rar3-vols.part2.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-vols.part2.rar.exp -------------------------------------------------------------------------------- /test/files/rar3-vols.part3.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-vols.part3.rar -------------------------------------------------------------------------------- /test/files/rar3-vols.part3.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar3-vols.part3.rar.exp -------------------------------------------------------------------------------- /test/files/rar5-blake.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-blake.rar -------------------------------------------------------------------------------- /test/files/rar5-blake.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-blake.rar.exp -------------------------------------------------------------------------------- /test/files/rar5-crc.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-crc.rar -------------------------------------------------------------------------------- /test/files/rar5-crc.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-crc.rar.exp -------------------------------------------------------------------------------- /test/files/rar5-crc.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-crc.sfx -------------------------------------------------------------------------------- /test/files/rar5-dups.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-dups.rar -------------------------------------------------------------------------------- /test/files/rar5-dups.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-dups.rar.exp -------------------------------------------------------------------------------- /test/files/rar5-hlink.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-hlink.rar -------------------------------------------------------------------------------- /test/files/rar5-hlink.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-hlink.rar.exp -------------------------------------------------------------------------------- /test/files/rar5-hpsw.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-hpsw.rar -------------------------------------------------------------------------------- /test/files/rar5-hpsw.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-hpsw.rar.exp -------------------------------------------------------------------------------- /test/files/rar5-owner.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-owner.rar -------------------------------------------------------------------------------- /test/files/rar5-owner.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-owner.rar.exp -------------------------------------------------------------------------------- /test/files/rar5-psw-blake.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-psw-blake.rar -------------------------------------------------------------------------------- /test/files/rar5-psw-blake.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-psw-blake.rar.exp -------------------------------------------------------------------------------- /test/files/rar5-psw.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-psw.rar -------------------------------------------------------------------------------- /test/files/rar5-psw.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-psw.rar.exp -------------------------------------------------------------------------------- /test/files/rar5-quick-open.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-quick-open.rar -------------------------------------------------------------------------------- /test/files/rar5-quick-open.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-quick-open.rar.exp -------------------------------------------------------------------------------- /test/files/rar5-readonly-unix.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-readonly-unix.rar -------------------------------------------------------------------------------- /test/files/rar5-readonly-unix.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-readonly-unix.rar.exp -------------------------------------------------------------------------------- /test/files/rar5-readonly-win.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-readonly-win.rar -------------------------------------------------------------------------------- /test/files/rar5-readonly-win.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-readonly-win.rar.exp -------------------------------------------------------------------------------- /test/files/rar5-solid-qo.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-solid-qo.rar -------------------------------------------------------------------------------- /test/files/rar5-solid-qo.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-solid-qo.rar.exp -------------------------------------------------------------------------------- /test/files/rar5-solid.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-solid.rar -------------------------------------------------------------------------------- /test/files/rar5-solid.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-solid.rar.exp -------------------------------------------------------------------------------- /test/files/rar5-subdirs.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-subdirs.rar -------------------------------------------------------------------------------- /test/files/rar5-subdirs.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-subdirs.rar.exp -------------------------------------------------------------------------------- /test/files/rar5-symlink-unix.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-symlink-unix.rar -------------------------------------------------------------------------------- /test/files/rar5-symlink-unix.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-symlink-unix.rar.exp -------------------------------------------------------------------------------- /test/files/rar5-symlink-win.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-symlink-win.rar -------------------------------------------------------------------------------- /test/files/rar5-symlink-win.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-symlink-win.rar.exp -------------------------------------------------------------------------------- /test/files/rar5-times.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-times.rar -------------------------------------------------------------------------------- /test/files/rar5-times.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-times.rar.exp -------------------------------------------------------------------------------- /test/files/rar5-times2.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-times2.rar -------------------------------------------------------------------------------- /test/files/rar5-times2.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-times2.rar.exp -------------------------------------------------------------------------------- /test/files/rar5-versions.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-versions.rar -------------------------------------------------------------------------------- /test/files/rar5-versions.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-versions.rar.exp -------------------------------------------------------------------------------- /test/files/rar5-vols.part1.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-vols.part1.rar -------------------------------------------------------------------------------- /test/files/rar5-vols.part1.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-vols.part1.rar.exp -------------------------------------------------------------------------------- /test/files/rar5-vols.part2.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-vols.part2.rar -------------------------------------------------------------------------------- /test/files/rar5-vols.part2.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-vols.part2.rar.exp -------------------------------------------------------------------------------- /test/files/rar5-vols.part3.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-vols.part3.rar -------------------------------------------------------------------------------- /test/files/rar5-vols.part3.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/rar5-vols.part3.rar.exp -------------------------------------------------------------------------------- /test/files/seektest.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/seektest.rar -------------------------------------------------------------------------------- /test/files/seektest.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/seektest.rar.exp -------------------------------------------------------------------------------- /test/files/unicode.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/unicode.rar -------------------------------------------------------------------------------- /test/files/unicode.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/unicode.rar.exp -------------------------------------------------------------------------------- /test/files/unicode2.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/unicode2.rar -------------------------------------------------------------------------------- /test/files/unicode2.rar.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/files/unicode2.rar.exp -------------------------------------------------------------------------------- /test/run_dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/run_dump.sh -------------------------------------------------------------------------------- /test/run_dump_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/run_dump_all.sh -------------------------------------------------------------------------------- /test/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/test_api.py -------------------------------------------------------------------------------- /test/test_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/test_compat.py -------------------------------------------------------------------------------- /test/test_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/test_crypto.py -------------------------------------------------------------------------------- /test/test_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/test_extract.py -------------------------------------------------------------------------------- /test/test_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/test_format.py -------------------------------------------------------------------------------- /test/test_hashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/test_hashing.py -------------------------------------------------------------------------------- /test/test_korrupt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/test_korrupt.py -------------------------------------------------------------------------------- /test/test_reading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/test_reading.py -------------------------------------------------------------------------------- /test/test_seek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/test_seek.py -------------------------------------------------------------------------------- /test/test_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/test_tool.py -------------------------------------------------------------------------------- /test/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/test/test_util.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markokr/rarfile/HEAD/tox.ini --------------------------------------------------------------------------------