├── .clang-format ├── 3ds.cpp ├── 3ds.sln ├── 3ds.vcxproj ├── Debug └── 3ds.ldw ├── ReadMe.txt ├── Release └── 3ds.ldw ├── ctr.c ├── ctr.h ├── dllmain.cpp ├── idaldr.h ├── keyset.h ├── polarssl ├── aes.c ├── aes.h ├── bignum.c ├── bignum.h ├── bn_mul.h ├── config.h ├── padlock.h ├── rsa.c ├── rsa.h ├── sha2.c └── sha2.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── types.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/.clang-format -------------------------------------------------------------------------------- /3ds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/3ds.cpp -------------------------------------------------------------------------------- /3ds.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/3ds.sln -------------------------------------------------------------------------------- /3ds.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/3ds.vcxproj -------------------------------------------------------------------------------- /Debug/3ds.ldw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/Debug/3ds.ldw -------------------------------------------------------------------------------- /ReadMe.txt: -------------------------------------------------------------------------------- 1 | IDA plugin for loading decrypted 3ds ROMs 2 | -------------------------------------------------------------------------------- /Release/3ds.ldw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/Release/3ds.ldw -------------------------------------------------------------------------------- /ctr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/ctr.c -------------------------------------------------------------------------------- /ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/ctr.h -------------------------------------------------------------------------------- /dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/dllmain.cpp -------------------------------------------------------------------------------- /idaldr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/idaldr.h -------------------------------------------------------------------------------- /keyset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/keyset.h -------------------------------------------------------------------------------- /polarssl/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/polarssl/aes.c -------------------------------------------------------------------------------- /polarssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/polarssl/aes.h -------------------------------------------------------------------------------- /polarssl/bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/polarssl/bignum.c -------------------------------------------------------------------------------- /polarssl/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/polarssl/bignum.h -------------------------------------------------------------------------------- /polarssl/bn_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/polarssl/bn_mul.h -------------------------------------------------------------------------------- /polarssl/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/polarssl/config.h -------------------------------------------------------------------------------- /polarssl/padlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/polarssl/padlock.h -------------------------------------------------------------------------------- /polarssl/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/polarssl/rsa.c -------------------------------------------------------------------------------- /polarssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/polarssl/rsa.h -------------------------------------------------------------------------------- /polarssl/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/polarssl/sha2.c -------------------------------------------------------------------------------- /polarssl/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/polarssl/sha2.h -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/stdafx.cpp -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/stdafx.h -------------------------------------------------------------------------------- /targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/targetver.h -------------------------------------------------------------------------------- /types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mailwl/IDA_plugin_3ds/HEAD/types.h --------------------------------------------------------------------------------