├── .clang-format ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── build.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── src ├── config │ ├── ConfigItemDimensionsPad.cpp │ ├── ConfigItemDimensionsPad.hpp │ ├── ConfigItemSelectInfinity.cpp │ ├── ConfigItemSelectInfinity.hpp │ ├── ConfigItemSelectSkylander.cpp │ ├── ConfigItemSelectSkylander.hpp │ ├── dir_icon.inc │ └── fav_icon.inc ├── devices │ ├── Device.h │ ├── Dimensions.cpp │ ├── Dimensions.h │ ├── Infinity.cpp │ ├── Infinity.h │ ├── Skylander.cpp │ └── Skylander.h ├── include │ └── re_nsyshid.h ├── main.cpp ├── nsyshid.cpp └── utils │ ├── DrawUtils.cpp │ ├── DrawUtils.hpp │ ├── FSUtils.cpp │ ├── FSUtils.hpp │ ├── aes.c │ ├── aes.h │ ├── aes.hpp │ ├── input.c │ ├── input.h │ ├── logger.c │ ├── logger.h │ ├── schrift.c │ ├── schrift.h │ ├── sha1.c │ └── sha1.h └── webpage ├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public └── vite.svg ├── src ├── App.css ├── App.jsx ├── assets │ └── react.svg ├── dashboard.jsx ├── index.css └── main.jsx ├── tailwind.config.js └── vite.config.js /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/README.md -------------------------------------------------------------------------------- /src/config/ConfigItemDimensionsPad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/config/ConfigItemDimensionsPad.cpp -------------------------------------------------------------------------------- /src/config/ConfigItemDimensionsPad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/config/ConfigItemDimensionsPad.hpp -------------------------------------------------------------------------------- /src/config/ConfigItemSelectInfinity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/config/ConfigItemSelectInfinity.cpp -------------------------------------------------------------------------------- /src/config/ConfigItemSelectInfinity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/config/ConfigItemSelectInfinity.hpp -------------------------------------------------------------------------------- /src/config/ConfigItemSelectSkylander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/config/ConfigItemSelectSkylander.cpp -------------------------------------------------------------------------------- /src/config/ConfigItemSelectSkylander.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/config/ConfigItemSelectSkylander.hpp -------------------------------------------------------------------------------- /src/config/dir_icon.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/config/dir_icon.inc -------------------------------------------------------------------------------- /src/config/fav_icon.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/config/fav_icon.inc -------------------------------------------------------------------------------- /src/devices/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/devices/Device.h -------------------------------------------------------------------------------- /src/devices/Dimensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/devices/Dimensions.cpp -------------------------------------------------------------------------------- /src/devices/Dimensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/devices/Dimensions.h -------------------------------------------------------------------------------- /src/devices/Infinity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/devices/Infinity.cpp -------------------------------------------------------------------------------- /src/devices/Infinity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/devices/Infinity.h -------------------------------------------------------------------------------- /src/devices/Skylander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/devices/Skylander.cpp -------------------------------------------------------------------------------- /src/devices/Skylander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/devices/Skylander.h -------------------------------------------------------------------------------- /src/include/re_nsyshid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/include/re_nsyshid.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/nsyshid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/nsyshid.cpp -------------------------------------------------------------------------------- /src/utils/DrawUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/utils/DrawUtils.cpp -------------------------------------------------------------------------------- /src/utils/DrawUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/utils/DrawUtils.hpp -------------------------------------------------------------------------------- /src/utils/FSUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/utils/FSUtils.cpp -------------------------------------------------------------------------------- /src/utils/FSUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/utils/FSUtils.hpp -------------------------------------------------------------------------------- /src/utils/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/utils/aes.c -------------------------------------------------------------------------------- /src/utils/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/utils/aes.h -------------------------------------------------------------------------------- /src/utils/aes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/utils/aes.hpp -------------------------------------------------------------------------------- /src/utils/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/utils/input.c -------------------------------------------------------------------------------- /src/utils/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/utils/input.h -------------------------------------------------------------------------------- /src/utils/logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/utils/logger.c -------------------------------------------------------------------------------- /src/utils/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/utils/logger.h -------------------------------------------------------------------------------- /src/utils/schrift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/utils/schrift.c -------------------------------------------------------------------------------- /src/utils/schrift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/utils/schrift.h -------------------------------------------------------------------------------- /src/utils/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/utils/sha1.c -------------------------------------------------------------------------------- /src/utils/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/src/utils/sha1.h -------------------------------------------------------------------------------- /webpage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/webpage/.gitignore -------------------------------------------------------------------------------- /webpage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/webpage/README.md -------------------------------------------------------------------------------- /webpage/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/webpage/eslint.config.js -------------------------------------------------------------------------------- /webpage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/webpage/index.html -------------------------------------------------------------------------------- /webpage/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/webpage/package-lock.json -------------------------------------------------------------------------------- /webpage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/webpage/package.json -------------------------------------------------------------------------------- /webpage/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/webpage/postcss.config.js -------------------------------------------------------------------------------- /webpage/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/webpage/public/vite.svg -------------------------------------------------------------------------------- /webpage/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/webpage/src/App.css -------------------------------------------------------------------------------- /webpage/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/webpage/src/App.jsx -------------------------------------------------------------------------------- /webpage/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/webpage/src/assets/react.svg -------------------------------------------------------------------------------- /webpage/src/dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/webpage/src/dashboard.jsx -------------------------------------------------------------------------------- /webpage/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/webpage/src/index.css -------------------------------------------------------------------------------- /webpage/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/webpage/src/main.jsx -------------------------------------------------------------------------------- /webpage/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/webpage/tailwind.config.js -------------------------------------------------------------------------------- /webpage/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deReeperJosh/re_nsyshid/HEAD/webpage/vite.config.js --------------------------------------------------------------------------------