├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── TODO ├── addstr.py ├── dx ├── __init__.py ├── bytestream.py ├── dex.py ├── dxlib.py ├── hash.py └── printer.py ├── dxdump.py ├── examples ├── dexpy_dxdump.py ├── dexpy_parse.py └── dxdump_c.py ├── lib ├── Makefile ├── bytestream.c ├── bytestream.h ├── dex.h ├── dex_builder.c ├── dex_offset.c ├── dex_parser.c ├── dex_string.c ├── dex_stringid.c ├── leb128.c ├── leb128.h ├── malloc_s.c └── malloc_s.h ├── mirror.py └── repacker.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/TODO -------------------------------------------------------------------------------- /addstr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/addstr.py -------------------------------------------------------------------------------- /dx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dx/bytestream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/dx/bytestream.py -------------------------------------------------------------------------------- /dx/dex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/dx/dex.py -------------------------------------------------------------------------------- /dx/dxlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/dx/dxlib.py -------------------------------------------------------------------------------- /dx/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/dx/hash.py -------------------------------------------------------------------------------- /dx/printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/dx/printer.py -------------------------------------------------------------------------------- /dxdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/dxdump.py -------------------------------------------------------------------------------- /examples/dexpy_dxdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/examples/dexpy_dxdump.py -------------------------------------------------------------------------------- /examples/dexpy_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/examples/dexpy_parse.py -------------------------------------------------------------------------------- /examples/dxdump_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/examples/dxdump_c.py -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/bytestream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/lib/bytestream.c -------------------------------------------------------------------------------- /lib/bytestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/lib/bytestream.h -------------------------------------------------------------------------------- /lib/dex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/lib/dex.h -------------------------------------------------------------------------------- /lib/dex_builder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/lib/dex_builder.c -------------------------------------------------------------------------------- /lib/dex_offset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/lib/dex_offset.c -------------------------------------------------------------------------------- /lib/dex_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/lib/dex_parser.c -------------------------------------------------------------------------------- /lib/dex_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/lib/dex_string.c -------------------------------------------------------------------------------- /lib/dex_stringid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/lib/dex_stringid.c -------------------------------------------------------------------------------- /lib/leb128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/lib/leb128.c -------------------------------------------------------------------------------- /lib/leb128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/lib/leb128.h -------------------------------------------------------------------------------- /lib/malloc_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/lib/malloc_s.c -------------------------------------------------------------------------------- /lib/malloc_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/lib/malloc_s.h -------------------------------------------------------------------------------- /mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/mirror.py -------------------------------------------------------------------------------- /repacker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rchiossi/dexterity/HEAD/repacker.sh --------------------------------------------------------------------------------