├── .github └── workflows │ └── ci.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.adoc ├── src ├── archive.rs ├── cbv.rs ├── decrypt.rs ├── macros.rs └── main.rs └── tests ├── decrypted_small.cbv ├── lib.rs ├── others └── .gitignore ├── small.cbv ├── small.cbz ├── small ├── small.cba ├── small.cbc ├── small.cbe ├── small.cbg ├── small.cbh ├── small.cbj ├── small.cbm ├── small.cbp ├── small.cbs ├── small.cbt ├── small.cbtt └── small.ini ├── small2.cbz ├── small3.cbz ├── twic1134.cbv └── twic1134 ├── twic1134.cba ├── twic1134.cbc ├── twic1134.cbe ├── twic1134.cbg ├── twic1134.cbh ├── twic1134.cbj ├── twic1134.cbl ├── twic1134.cbm ├── twic1134.cbp ├── twic1134.cbs ├── twic1134.cbt ├── twic1134.cbtt └── twic1134.ini /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/README.adoc -------------------------------------------------------------------------------- /src/archive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/src/archive.rs -------------------------------------------------------------------------------- /src/cbv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/src/cbv.rs -------------------------------------------------------------------------------- /src/decrypt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/src/decrypt.rs -------------------------------------------------------------------------------- /src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/src/macros.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/src/main.rs -------------------------------------------------------------------------------- /tests/decrypted_small.cbv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/decrypted_small.cbv -------------------------------------------------------------------------------- /tests/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/lib.rs -------------------------------------------------------------------------------- /tests/others/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/small.cbv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/small.cbv -------------------------------------------------------------------------------- /tests/small.cbz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/small.cbz -------------------------------------------------------------------------------- /tests/small/small.cba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/small/small.cba -------------------------------------------------------------------------------- /tests/small/small.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/small/small.cbc -------------------------------------------------------------------------------- /tests/small/small.cbe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/small/small.cbe -------------------------------------------------------------------------------- /tests/small/small.cbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/small/small.cbg -------------------------------------------------------------------------------- /tests/small/small.cbh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/small/small.cbh -------------------------------------------------------------------------------- /tests/small/small.cbj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/small/small.cbj -------------------------------------------------------------------------------- /tests/small/small.cbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/small/small.cbm -------------------------------------------------------------------------------- /tests/small/small.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/small/small.cbp -------------------------------------------------------------------------------- /tests/small/small.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/small/small.cbs -------------------------------------------------------------------------------- /tests/small/small.cbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/small/small.cbt -------------------------------------------------------------------------------- /tests/small/small.cbtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/small/small.cbtt -------------------------------------------------------------------------------- /tests/small/small.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/small/small.ini -------------------------------------------------------------------------------- /tests/small2.cbz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/small2.cbz -------------------------------------------------------------------------------- /tests/small3.cbz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/small3.cbz -------------------------------------------------------------------------------- /tests/twic1134.cbv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/twic1134.cbv -------------------------------------------------------------------------------- /tests/twic1134/twic1134.cba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/twic1134/twic1134.cba -------------------------------------------------------------------------------- /tests/twic1134/twic1134.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/twic1134/twic1134.cbc -------------------------------------------------------------------------------- /tests/twic1134/twic1134.cbe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/twic1134/twic1134.cbe -------------------------------------------------------------------------------- /tests/twic1134/twic1134.cbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/twic1134/twic1134.cbg -------------------------------------------------------------------------------- /tests/twic1134/twic1134.cbh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/twic1134/twic1134.cbh -------------------------------------------------------------------------------- /tests/twic1134/twic1134.cbj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/twic1134/twic1134.cbj -------------------------------------------------------------------------------- /tests/twic1134/twic1134.cbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/twic1134/twic1134.cbl -------------------------------------------------------------------------------- /tests/twic1134/twic1134.cbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/twic1134/twic1134.cbm -------------------------------------------------------------------------------- /tests/twic1134/twic1134.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/twic1134/twic1134.cbp -------------------------------------------------------------------------------- /tests/twic1134/twic1134.cbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/twic1134/twic1134.cbs -------------------------------------------------------------------------------- /tests/twic1134/twic1134.cbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/twic1134/twic1134.cbt -------------------------------------------------------------------------------- /tests/twic1134/twic1134.cbtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/twic1134/twic1134.cbtt -------------------------------------------------------------------------------- /tests/twic1134/twic1134.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoyo/uncbv/HEAD/tests/twic1134/twic1134.ini --------------------------------------------------------------------------------