├── .gitattributes ├── .gitignore ├── Example.md ├── README.md ├── ida_header.h └── media ├── assocty.png ├── ida_options_off.png ├── pcd_notifxed.png ├── pcd_renamed.png ├── pcd_wip.png ├── proto_fixed.png ├── proto_notfixed.png └── proto_parsed.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doronz88/swift_reversing/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /Example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doronz88/swift_reversing/HEAD/Example.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doronz88/swift_reversing/HEAD/README.md -------------------------------------------------------------------------------- /ida_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doronz88/swift_reversing/HEAD/ida_header.h -------------------------------------------------------------------------------- /media/assocty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doronz88/swift_reversing/HEAD/media/assocty.png -------------------------------------------------------------------------------- /media/ida_options_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doronz88/swift_reversing/HEAD/media/ida_options_off.png -------------------------------------------------------------------------------- /media/pcd_notifxed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doronz88/swift_reversing/HEAD/media/pcd_notifxed.png -------------------------------------------------------------------------------- /media/pcd_renamed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doronz88/swift_reversing/HEAD/media/pcd_renamed.png -------------------------------------------------------------------------------- /media/pcd_wip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doronz88/swift_reversing/HEAD/media/pcd_wip.png -------------------------------------------------------------------------------- /media/proto_fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doronz88/swift_reversing/HEAD/media/proto_fixed.png -------------------------------------------------------------------------------- /media/proto_notfixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doronz88/swift_reversing/HEAD/media/proto_notfixed.png -------------------------------------------------------------------------------- /media/proto_parsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doronz88/swift_reversing/HEAD/media/proto_parsed.png --------------------------------------------------------------------------------