├── .idea ├── .gitignore ├── WBOXAES.iml ├── easycode.ignore ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── README ├── image-20250624175629972.png ├── image-20250624180244715.png └── image-20250625100645697.png ├── WBModule ├── GetAllKey.py ├── getRoundKey.py └── traces │ └── tracefile.txt ├── WhiteBoxAesCrack.py └── test.py /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHangwendada/WhiteBoxAesCrack/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/WBOXAES.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHangwendada/WhiteBoxAesCrack/HEAD/.idea/WBOXAES.iml -------------------------------------------------------------------------------- /.idea/easycode.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHangwendada/WhiteBoxAesCrack/HEAD/.idea/easycode.ignore -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHangwendada/WhiteBoxAesCrack/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHangwendada/WhiteBoxAesCrack/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHangwendada/WhiteBoxAesCrack/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHangwendada/WhiteBoxAesCrack/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHangwendada/WhiteBoxAesCrack/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHangwendada/WhiteBoxAesCrack/HEAD/README.md -------------------------------------------------------------------------------- /README/image-20250624175629972.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHangwendada/WhiteBoxAesCrack/HEAD/README/image-20250624175629972.png -------------------------------------------------------------------------------- /README/image-20250624180244715.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHangwendada/WhiteBoxAesCrack/HEAD/README/image-20250624180244715.png -------------------------------------------------------------------------------- /README/image-20250625100645697.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHangwendada/WhiteBoxAesCrack/HEAD/README/image-20250625100645697.png -------------------------------------------------------------------------------- /WBModule/GetAllKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHangwendada/WhiteBoxAesCrack/HEAD/WBModule/GetAllKey.py -------------------------------------------------------------------------------- /WBModule/getRoundKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHangwendada/WhiteBoxAesCrack/HEAD/WBModule/getRoundKey.py -------------------------------------------------------------------------------- /WBModule/traces/tracefile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WhiteBoxAesCrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHangwendada/WhiteBoxAesCrack/HEAD/WhiteBoxAesCrack.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SHangwendada/WhiteBoxAesCrack/HEAD/test.py --------------------------------------------------------------------------------