├── Makefile.am ├── autogen.sh ├── configure.ac ├── igetnonce.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── igetnonce ├── Makefile.am ├── all_igetnonce.h ├── common.c ├── common.h ├── dfu.c ├── dfu.h ├── endianness.h ├── idevicerestore.c ├── idevicerestore.h ├── main.c ├── normal.c ├── normal.h ├── recovery.c └── recovery.h └── setBuildVersion.sh /Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=igetnonce 2 | -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/igetnonce/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/igetnonce/HEAD/configure.ac -------------------------------------------------------------------------------- /igetnonce.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/igetnonce/HEAD/igetnonce.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /igetnonce.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/igetnonce/HEAD/igetnonce.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /igetnonce/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/igetnonce/HEAD/igetnonce/Makefile.am -------------------------------------------------------------------------------- /igetnonce/all_igetnonce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/igetnonce/HEAD/igetnonce/all_igetnonce.h -------------------------------------------------------------------------------- /igetnonce/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/igetnonce/HEAD/igetnonce/common.c -------------------------------------------------------------------------------- /igetnonce/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/igetnonce/HEAD/igetnonce/common.h -------------------------------------------------------------------------------- /igetnonce/dfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/igetnonce/HEAD/igetnonce/dfu.c -------------------------------------------------------------------------------- /igetnonce/dfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/igetnonce/HEAD/igetnonce/dfu.h -------------------------------------------------------------------------------- /igetnonce/endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/igetnonce/HEAD/igetnonce/endianness.h -------------------------------------------------------------------------------- /igetnonce/idevicerestore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/igetnonce/HEAD/igetnonce/idevicerestore.c -------------------------------------------------------------------------------- /igetnonce/idevicerestore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/igetnonce/HEAD/igetnonce/idevicerestore.h -------------------------------------------------------------------------------- /igetnonce/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/igetnonce/HEAD/igetnonce/main.c -------------------------------------------------------------------------------- /igetnonce/normal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/igetnonce/HEAD/igetnonce/normal.c -------------------------------------------------------------------------------- /igetnonce/normal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/igetnonce/HEAD/igetnonce/normal.h -------------------------------------------------------------------------------- /igetnonce/recovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/igetnonce/HEAD/igetnonce/recovery.c -------------------------------------------------------------------------------- /igetnonce/recovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/igetnonce/HEAD/igetnonce/recovery.h -------------------------------------------------------------------------------- /setBuildVersion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/igetnonce/HEAD/setBuildVersion.sh --------------------------------------------------------------------------------