├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── inject.sh └── src ├── drm.h ├── drm.m ├── external.h ├── main.m └── util.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/RemoveBooksDRM/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/RemoveBooksDRM/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/RemoveBooksDRM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/RemoveBooksDRM/HEAD/README.md -------------------------------------------------------------------------------- /inject.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/RemoveBooksDRM/HEAD/inject.sh -------------------------------------------------------------------------------- /src/drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/RemoveBooksDRM/HEAD/src/drm.h -------------------------------------------------------------------------------- /src/drm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/RemoveBooksDRM/HEAD/src/drm.m -------------------------------------------------------------------------------- /src/external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/RemoveBooksDRM/HEAD/src/external.h -------------------------------------------------------------------------------- /src/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/RemoveBooksDRM/HEAD/src/main.m -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/RemoveBooksDRM/HEAD/src/util.h --------------------------------------------------------------------------------