├── .gitignore ├── DeDRM_Macintosh_Application ├── DeDRM ReadMe.rtf └── DeDRM.app │ └── Contents │ ├── Info.plist │ ├── MacOS │ └── droplet │ ├── PkgInfo │ └── Resources │ ├── DeDRM Progress Source.zip │ ├── DeDRM Progress.app │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── DeDRM Progress │ │ ├── PkgInfo │ │ └── Resources │ │ ├── DeDRM Progress.icns │ │ ├── English.lproj │ │ ├── InfoPlist.strings │ │ └── MainMenu.nib │ │ └── Scripts │ │ └── Window.scpt │ ├── DeDRM.icns │ ├── DeDRM_Adobe Digital Editions Key_Help.htm │ ├── DeDRM_Barnes and Noble Key_Help.htm │ ├── DeDRM_EInk Kindle Serial Number_Help.htm │ ├── DeDRM_Help.htm │ ├── DeDRM_Kindle for Mac and PC Key_Help.htm │ ├── DeDRM_Mobipocket PID_Help.htm │ ├── DeDRM_eReader Key_Help.htm │ ├── Scripts │ └── main.scpt │ ├── __init__.py │ ├── adobekey.py │ ├── aescbc.py │ ├── alfcrypto.dll │ ├── alfcrypto.py │ ├── alfcrypto64.dll │ ├── alfcrypto_src.zip │ ├── android.py │ ├── android_readme.txt │ ├── config.py │ ├── convert2xml.py │ ├── description.rtfd │ └── TXT.rtf │ ├── droplet.rsrc │ ├── encodebase64.py │ ├── epubtest.py │ ├── erdr2pml.py │ ├── flatxml2html.py │ ├── flatxml2svg.py │ ├── genbook.py │ ├── ignobleepub.py │ ├── ignoblekeygen.py │ ├── ineptepub.py │ ├── ineptpdf.py │ ├── k4mobidedrm.py │ ├── kgenpids.py │ ├── kindlekey.py │ ├── kindlepid.py │ ├── libalfcrypto.dylib │ ├── libalfcrypto32.so │ ├── libalfcrypto64.so │ ├── mobidedrm.py │ ├── openssl_des.py │ ├── plugin-import-name-dedrm.txt │ ├── prefs.py │ ├── pycrypto_des.py │ ├── python_des.py │ ├── scriptinterface.py │ ├── stylexml2css.py │ ├── topazextract.py │ ├── utilities.py │ ├── wineutils.py │ ├── zipfilerugged.py │ └── zipfix.py ├── DeDRM_Windows_Application ├── DeDRM_App │ ├── DeDRM_Drop_Target.bat │ └── DeDRM_lib │ │ ├── DeDRM_App.pyw │ │ └── lib │ │ ├── DeDRM_Adobe Digital Editions Key_Help.htm │ │ ├── DeDRM_Barnes and Noble Key_Help.htm │ │ ├── DeDRM_EInk Kindle Serial Number_Help.htm │ │ ├── DeDRM_Help.htm │ │ ├── DeDRM_Kindle for Mac and PC Key_Help.htm │ │ ├── DeDRM_Mobipocket PID_Help.htm │ │ ├── DeDRM_eReader Key_Help.htm │ │ ├── __init__.py │ │ ├── activitybar.py │ │ ├── adobekey.py │ │ ├── aescbc.py │ │ ├── alfcrypto.dll │ │ ├── alfcrypto.py │ │ ├── alfcrypto64.dll │ │ ├── alfcrypto_src.zip │ │ ├── android.py │ │ ├── android_readme.txt │ │ ├── argv_utils.py │ │ ├── askfolder_ed.py │ │ ├── config.py │ │ ├── convert2xml.py │ │ ├── dialogs.py │ │ ├── encodebase64.py │ │ ├── epubtest.py │ │ ├── erdr2pml.py │ │ ├── flatxml2html.py │ │ ├── flatxml2svg.py │ │ ├── genbook.py │ │ ├── ignobleepub.py │ │ ├── ignoblekeygen.py │ │ ├── ineptepub.py │ │ ├── ineptpdf.py │ │ ├── k4mobidedrm.py │ │ ├── kgenpids.py │ │ ├── kindlekey.py │ │ ├── kindlepid.py │ │ ├── libalfcrypto.dylib │ │ ├── libalfcrypto32.so │ │ ├── libalfcrypto64.so │ │ ├── mobidedrm.py │ │ ├── openssl_des.py │ │ ├── prefs.py │ │ ├── pycrypto_des.py │ │ ├── python_des.py │ │ ├── scriptinterface.py │ │ ├── scrolltextwidget.py │ │ ├── simpleprefs.py │ │ ├── stylexml2css.py │ │ ├── topazextract.py │ │ ├── utilities.py │ │ ├── wineutils.py │ │ ├── zipfilerugged.py │ │ └── zipfix.py └── DeDRM_App_ReadMe.txt ├── DeDRM_calibre_plugin ├── DeDRM_plugin.zip └── DeDRM_plugin_ReadMe.txt ├── Other_Tools ├── B_and_N_Download_Helper │ └── BN-Dload.user_ReadMe.txt ├── DRM_Key_Scripts │ ├── Adobe_Digital_Editions │ │ └── adobekey.pyw │ ├── Barnes_and_Noble_ePubs │ │ └── ignoblekeygen.pyw │ ├── Kindle_for_Mac_and_PC │ │ └── kindlekey.pyw │ └── Kindle_for_iOS │ │ └── kindleiospidgen.py ├── Kindle_for_Android_Patches │ ├── A_Patching_Experience.txt │ ├── kindle_version_3.0.1.70 │ │ ├── ReadMe_K4Android.txt │ │ └── kindle3.0.1.70.patch │ ├── kindle_version_3.7.0.108 │ │ ├── ReadMe_K4Android.txt │ │ └── kindle3.7.0.108.patch │ └── kindle_version_4.0.2.1 │ │ └── kindle4.0.2.1.patch ├── Kobo │ └── obok_2.01.py ├── Rocket_ebooks │ ├── rebhack.zip │ └── rebhack_ReadMe.txt └── Scuolabook_DRM │ ├── Scuolabook_DRM_Remover_1.0.zip │ ├── Scuolabook_DRM_Remover_source_19_11_2012.zip │ └── Scuolabook_ReadMe.txt ├── old-readme.md └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM ReadMe.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM ReadMe.rtf -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Info.plist -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/MacOS/droplet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/MacOS/droplet -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLdplt -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM Progress Source.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM Progress Source.zip -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM Progress.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM Progress.app/Contents/Info.plist -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM Progress.app/Contents/MacOS/DeDRM Progress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM Progress.app/Contents/MacOS/DeDRM Progress -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM Progress.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM Progress.app/Contents/Resources/DeDRM Progress.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM Progress.app/Contents/Resources/DeDRM Progress.icns -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM Progress.app/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM Progress.app/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM Progress.app/Contents/Resources/English.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM Progress.app/Contents/Resources/English.lproj/MainMenu.nib -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM Progress.app/Contents/Resources/Scripts/Window.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM Progress.app/Contents/Resources/Scripts/Window.scpt -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM.icns -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM_Adobe Digital Editions Key_Help.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM_Adobe Digital Editions Key_Help.htm -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM_Barnes and Noble Key_Help.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM_Barnes and Noble Key_Help.htm -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM_EInk Kindle Serial Number_Help.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM_EInk Kindle Serial Number_Help.htm -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM_Help.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM_Help.htm -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM_Kindle for Mac and PC Key_Help.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM_Kindle for Mac and PC Key_Help.htm -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM_Mobipocket PID_Help.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM_Mobipocket PID_Help.htm -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM_eReader Key_Help.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/DeDRM_eReader Key_Help.htm -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/__init__.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/adobekey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/adobekey.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/aescbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/aescbc.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/alfcrypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/alfcrypto.dll -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/alfcrypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/alfcrypto.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/alfcrypto64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/alfcrypto64.dll -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/alfcrypto_src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/alfcrypto_src.zip -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/android.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/android_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/android_readme.txt -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/config.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/convert2xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/convert2xml.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/description.rtfd/TXT.rtf -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/droplet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/droplet.rsrc -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/encodebase64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/encodebase64.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/epubtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/epubtest.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/erdr2pml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/erdr2pml.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/flatxml2html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/flatxml2html.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/flatxml2svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/flatxml2svg.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/genbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/genbook.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/ignobleepub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/ignobleepub.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/ignoblekeygen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/ignoblekeygen.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/ineptepub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/ineptepub.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/ineptpdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/ineptpdf.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/k4mobidedrm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/k4mobidedrm.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/kgenpids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/kgenpids.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/kindlekey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/kindlekey.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/kindlepid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/kindlepid.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/libalfcrypto.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/libalfcrypto.dylib -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/libalfcrypto32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/libalfcrypto32.so -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/libalfcrypto64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/libalfcrypto64.so -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/mobidedrm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/mobidedrm.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/openssl_des.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/openssl_des.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/plugin-import-name-dedrm.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/prefs.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/pycrypto_des.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/pycrypto_des.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/python_des.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/python_des.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/scriptinterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/scriptinterface.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/stylexml2css.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/stylexml2css.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/topazextract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/topazextract.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/utilities.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/wineutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/wineutils.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/zipfilerugged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/zipfilerugged.py -------------------------------------------------------------------------------- /DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/zipfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Macintosh_Application/DeDRM.app/Contents/Resources/zipfix.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_Drop_Target.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_Drop_Target.bat -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/DeDRM_App.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/DeDRM_App.pyw -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/DeDRM_Adobe Digital Editions Key_Help.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/DeDRM_Adobe Digital Editions Key_Help.htm -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/DeDRM_Barnes and Noble Key_Help.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/DeDRM_Barnes and Noble Key_Help.htm -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/DeDRM_EInk Kindle Serial Number_Help.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/DeDRM_EInk Kindle Serial Number_Help.htm -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/DeDRM_Help.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/DeDRM_Help.htm -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/DeDRM_Kindle for Mac and PC Key_Help.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/DeDRM_Kindle for Mac and PC Key_Help.htm -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/DeDRM_Mobipocket PID_Help.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/DeDRM_Mobipocket PID_Help.htm -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/DeDRM_eReader Key_Help.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/DeDRM_eReader Key_Help.htm -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/__init__.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/activitybar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/activitybar.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/adobekey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/adobekey.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/aescbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/aescbc.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/alfcrypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/alfcrypto.dll -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/alfcrypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/alfcrypto.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/alfcrypto64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/alfcrypto64.dll -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/alfcrypto_src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/alfcrypto_src.zip -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/android.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/android_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/android_readme.txt -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/argv_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/argv_utils.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/askfolder_ed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/askfolder_ed.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/config.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/convert2xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/convert2xml.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/dialogs.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/encodebase64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/encodebase64.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/epubtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/epubtest.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/erdr2pml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/erdr2pml.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/flatxml2html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/flatxml2html.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/flatxml2svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/flatxml2svg.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/genbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/genbook.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/ignobleepub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/ignobleepub.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/ignoblekeygen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/ignoblekeygen.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/ineptepub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/ineptepub.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/ineptpdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/ineptpdf.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/k4mobidedrm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/k4mobidedrm.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/kgenpids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/kgenpids.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/kindlekey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/kindlekey.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/kindlepid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/kindlepid.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/libalfcrypto.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/libalfcrypto.dylib -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/libalfcrypto32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/libalfcrypto32.so -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/libalfcrypto64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/libalfcrypto64.so -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/mobidedrm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/mobidedrm.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/openssl_des.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/openssl_des.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/prefs.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/pycrypto_des.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/pycrypto_des.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/python_des.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/python_des.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/scriptinterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/scriptinterface.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/scrolltextwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/scrolltextwidget.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/simpleprefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/simpleprefs.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/stylexml2css.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/stylexml2css.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/topazextract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/topazextract.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/utilities.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/wineutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/wineutils.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/zipfilerugged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/zipfilerugged.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/zipfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App/DeDRM_lib/lib/zipfix.py -------------------------------------------------------------------------------- /DeDRM_Windows_Application/DeDRM_App_ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_Windows_Application/DeDRM_App_ReadMe.txt -------------------------------------------------------------------------------- /DeDRM_calibre_plugin/DeDRM_plugin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_calibre_plugin/DeDRM_plugin.zip -------------------------------------------------------------------------------- /DeDRM_calibre_plugin/DeDRM_plugin_ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/DeDRM_calibre_plugin/DeDRM_plugin_ReadMe.txt -------------------------------------------------------------------------------- /Other_Tools/B_and_N_Download_Helper/BN-Dload.user_ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/Other_Tools/B_and_N_Download_Helper/BN-Dload.user_ReadMe.txt -------------------------------------------------------------------------------- /Other_Tools/DRM_Key_Scripts/Adobe_Digital_Editions/adobekey.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/Other_Tools/DRM_Key_Scripts/Adobe_Digital_Editions/adobekey.pyw -------------------------------------------------------------------------------- /Other_Tools/DRM_Key_Scripts/Barnes_and_Noble_ePubs/ignoblekeygen.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/Other_Tools/DRM_Key_Scripts/Barnes_and_Noble_ePubs/ignoblekeygen.pyw -------------------------------------------------------------------------------- /Other_Tools/DRM_Key_Scripts/Kindle_for_Mac_and_PC/kindlekey.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/Other_Tools/DRM_Key_Scripts/Kindle_for_Mac_and_PC/kindlekey.pyw -------------------------------------------------------------------------------- /Other_Tools/DRM_Key_Scripts/Kindle_for_iOS/kindleiospidgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/Other_Tools/DRM_Key_Scripts/Kindle_for_iOS/kindleiospidgen.py -------------------------------------------------------------------------------- /Other_Tools/Kindle_for_Android_Patches/A_Patching_Experience.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/Other_Tools/Kindle_for_Android_Patches/A_Patching_Experience.txt -------------------------------------------------------------------------------- /Other_Tools/Kindle_for_Android_Patches/kindle_version_3.0.1.70/ReadMe_K4Android.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/Other_Tools/Kindle_for_Android_Patches/kindle_version_3.0.1.70/ReadMe_K4Android.txt -------------------------------------------------------------------------------- /Other_Tools/Kindle_for_Android_Patches/kindle_version_3.0.1.70/kindle3.0.1.70.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/Other_Tools/Kindle_for_Android_Patches/kindle_version_3.0.1.70/kindle3.0.1.70.patch -------------------------------------------------------------------------------- /Other_Tools/Kindle_for_Android_Patches/kindle_version_3.7.0.108/ReadMe_K4Android.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/Other_Tools/Kindle_for_Android_Patches/kindle_version_3.7.0.108/ReadMe_K4Android.txt -------------------------------------------------------------------------------- /Other_Tools/Kindle_for_Android_Patches/kindle_version_3.7.0.108/kindle3.7.0.108.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/Other_Tools/Kindle_for_Android_Patches/kindle_version_3.7.0.108/kindle3.7.0.108.patch -------------------------------------------------------------------------------- /Other_Tools/Kindle_for_Android_Patches/kindle_version_4.0.2.1/kindle4.0.2.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/Other_Tools/Kindle_for_Android_Patches/kindle_version_4.0.2.1/kindle4.0.2.1.patch -------------------------------------------------------------------------------- /Other_Tools/Kobo/obok_2.01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/Other_Tools/Kobo/obok_2.01.py -------------------------------------------------------------------------------- /Other_Tools/Rocket_ebooks/rebhack.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/Other_Tools/Rocket_ebooks/rebhack.zip -------------------------------------------------------------------------------- /Other_Tools/Rocket_ebooks/rebhack_ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/Other_Tools/Rocket_ebooks/rebhack_ReadMe.txt -------------------------------------------------------------------------------- /Other_Tools/Scuolabook_DRM/Scuolabook_DRM_Remover_1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/Other_Tools/Scuolabook_DRM/Scuolabook_DRM_Remover_1.0.zip -------------------------------------------------------------------------------- /Other_Tools/Scuolabook_DRM/Scuolabook_DRM_Remover_source_19_11_2012.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/Other_Tools/Scuolabook_DRM/Scuolabook_DRM_Remover_source_19_11_2012.zip -------------------------------------------------------------------------------- /Other_Tools/Scuolabook_DRM/Scuolabook_ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/Other_Tools/Scuolabook_DRM/Scuolabook_ReadMe.txt -------------------------------------------------------------------------------- /old-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/old-readme.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psyrendust/dedrm-ebook-tools/HEAD/readme.md --------------------------------------------------------------------------------