2020-09-27 04:54:49 -06:00
|
|
|
#!/usr/bin/env python3
|
2010-07-24 05:55:24 -06:00
|
|
|
# -*- coding: utf-8 -*-
|
2009-02-19 05:39:43 -07:00
|
|
|
|
2020-09-27 04:54:49 -06:00
|
|
|
# ineptepub.py
|
2021-12-23 03:29:58 -07:00
|
|
|
# Copyright © 2009-2021 by i♥cabbages, Apprentice Harper et al.
|
2009-02-19 05:39:43 -07:00
|
|
|
|
2012-12-19 06:48:11 -07:00
|
|
|
# Released under the terms of the GNU General Public Licence, version 3
|
|
|
|
# <http://www.gnu.org/licenses/>
|
|
|
|
|
2009-02-19 05:39:43 -07:00
|
|
|
|
|
|
|
# Revision history:
|
|
|
|
# 1 - Initial release
|
2013-10-02 12:59:40 -06:00
|
|
|
# 2 - Rename to INEPT, fix exit code
|
|
|
|
# 5 - Version bump to avoid (?) confusion;
|
|
|
|
# Improve OS X support by using OpenSSL when available
|
|
|
|
# 5.1 - Improve OpenSSL error checking
|
|
|
|
# 5.2 - Fix ctypes error causing segfaults on some systems
|
|
|
|
# 5.3 - add support for OpenSSL on Windows, fix bug with some versions of libcrypto 0.9.8 prior to path level o
|
|
|
|
# 5.4 - add support for encoding to 'utf-8' when building up list of files to decrypt from encryption.xml
|
|
|
|
# 5.5 - On Windows try PyCrypto first, OpenSSL next
|
|
|
|
# 5.6 - Modify interface to allow use with import
|
|
|
|
# 5.7 - Fix for potential problem with PyCrypto
|
|
|
|
# 5.8 - Revised to allow use in calibre plugins to eliminate need for duplicate code
|
|
|
|
# 5.9 - Fixed to retain zip file metadata (e.g. file modification date)
|
|
|
|
# 6.0 - moved unicode_argv call inside main for Windows DeDRM compatibility
|
|
|
|
# 6.1 - Work if TkInter is missing
|
2015-03-09 01:38:31 -06:00
|
|
|
# 6.2 - Handle UTF-8 file names inside an ePub, fix by Jose Luis
|
2016-01-10 23:44:44 -07:00
|
|
|
# 6.3 - Add additional check on DER file sanity
|
2016-01-14 10:15:43 -07:00
|
|
|
# 6.4 - Remove erroneous check on DER file sanity
|
2016-01-14 23:30:54 -07:00
|
|
|
# 6.5 - Completely remove erroneous check on DER file sanity
|
2017-06-26 23:50:24 -06:00
|
|
|
# 6.6 - Import tkFileDialog, don't assume something else will import it.
|
2020-09-26 14:22:47 -06:00
|
|
|
# 7.0 - Add Python 3 compatibility for calibre 5.0
|
2021-12-23 03:29:58 -07:00
|
|
|
# 7.1 - Add ignoble support, dropping the dedicated ignobleepub.py script
|
2012-11-07 06:14:25 -07:00
|
|
|
|
2009-02-19 05:39:43 -07:00
|
|
|
"""
|
2013-10-02 12:59:40 -06:00
|
|
|
Decrypt Adobe Digital Editions encrypted ePub books.
|
2009-02-19 05:39:43 -07:00
|
|
|
"""
|
|
|
|
|
|
|
|
__license__ = 'GPL v3'
|
2021-12-23 03:29:58 -07:00
|
|
|
__version__ = "7.1"
|
2009-02-19 05:39:43 -07:00
|
|
|
|
|
|
|
import sys
|
|
|
|
import os
|
2013-10-02 12:59:40 -06:00
|
|
|
import traceback
|
2021-12-23 03:29:58 -07:00
|
|
|
import base64
|
2009-02-19 05:39:43 -07:00
|
|
|
import zlib
|
2013-10-02 12:59:40 -06:00
|
|
|
import zipfile
|
|
|
|
from zipfile import ZipInfo, ZipFile, ZIP_STORED, ZIP_DEFLATED
|
|
|
|
from contextlib import closing
|
2021-11-15 10:38:34 -07:00
|
|
|
from lxml import etree
|
2012-12-19 06:48:11 -07:00
|
|
|
|
|
|
|
# Wrap a stream so that output gets flushed immediately
|
|
|
|
# and also make sure that any unicode strings get
|
|
|
|
# encoded using "replace" before writing them.
|
|
|
|
class SafeUnbuffered:
|
|
|
|
def __init__(self, stream):
|
|
|
|
self.stream = stream
|
|
|
|
self.encoding = stream.encoding
|
|
|
|
if self.encoding == None:
|
|
|
|
self.encoding = "utf-8"
|
|
|
|
def write(self, data):
|
2021-11-16 03:09:03 -07:00
|
|
|
if isinstance(data,str) or isinstance(data,unicode):
|
|
|
|
# str for Python3, unicode for Python2
|
2012-12-19 06:48:11 -07:00
|
|
|
data = data.encode(self.encoding,"replace")
|
2021-11-16 03:09:03 -07:00
|
|
|
try:
|
|
|
|
buffer = getattr(self.stream, 'buffer', self.stream)
|
|
|
|
# self.stream.buffer for Python3, self.stream for Python2
|
|
|
|
buffer.write(data)
|
|
|
|
buffer.flush()
|
|
|
|
except:
|
|
|
|
# We can do nothing if a write fails
|
|
|
|
raise
|
2012-12-19 06:48:11 -07:00
|
|
|
def __getattr__(self, attr):
|
|
|
|
return getattr(self.stream, attr)
|
|
|
|
|
2013-10-02 12:59:40 -06:00
|
|
|
try:
|
|
|
|
from calibre.constants import iswindows, isosx
|
|
|
|
except:
|
|
|
|
iswindows = sys.platform.startswith('win')
|
|
|
|
isosx = sys.platform.startswith('darwin')
|
2012-12-19 06:48:11 -07:00
|
|
|
|
|
|
|
def unicode_argv():
|
|
|
|
if iswindows:
|
|
|
|
# Uses shell32.GetCommandLineArgvW to get sys.argv as a list of Unicode
|
|
|
|
# strings.
|
|
|
|
|
|
|
|
# Versions 2.x of Python don't support Unicode in sys.argv on
|
|
|
|
# Windows, with the underlying Windows API instead replacing multi-byte
|
|
|
|
# characters with '?'.
|
|
|
|
|
|
|
|
|
|
|
|
from ctypes import POINTER, byref, cdll, c_int, windll
|
|
|
|
from ctypes.wintypes import LPCWSTR, LPWSTR
|
|
|
|
|
|
|
|
GetCommandLineW = cdll.kernel32.GetCommandLineW
|
|
|
|
GetCommandLineW.argtypes = []
|
|
|
|
GetCommandLineW.restype = LPCWSTR
|
|
|
|
|
|
|
|
CommandLineToArgvW = windll.shell32.CommandLineToArgvW
|
|
|
|
CommandLineToArgvW.argtypes = [LPCWSTR, POINTER(c_int)]
|
|
|
|
CommandLineToArgvW.restype = POINTER(LPWSTR)
|
|
|
|
|
|
|
|
cmd = GetCommandLineW()
|
|
|
|
argc = c_int(0)
|
|
|
|
argv = CommandLineToArgvW(cmd, byref(argc))
|
|
|
|
if argc.value > 0:
|
|
|
|
# Remove Python executable and commands if present
|
|
|
|
start = argc.value - len(sys.argv)
|
|
|
|
return [argv[i] for i in
|
2020-05-08 09:35:01 -06:00
|
|
|
range(start, argc.value)]
|
2020-09-27 04:54:49 -06:00
|
|
|
return ["ineptepub.py"]
|
2012-12-19 06:48:11 -07:00
|
|
|
else:
|
2020-10-04 13:36:12 -06:00
|
|
|
argvencoding = sys.stdin.encoding or "utf-8"
|
2021-11-16 03:09:03 -07:00
|
|
|
return [arg if (isinstance(arg, str) or isinstance(arg,unicode)) else str(arg, argvencoding) for arg in sys.argv]
|
2012-12-19 06:48:11 -07:00
|
|
|
|
2009-02-19 05:39:43 -07:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
class ADEPTError(Exception):
|
|
|
|
pass
|
2009-02-19 05:39:43 -07:00
|
|
|
|
2021-11-15 11:51:36 -07:00
|
|
|
class ADEPTNewVersionError(Exception):
|
|
|
|
pass
|
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
def _load_crypto_libcrypto():
|
|
|
|
from ctypes import CDLL, POINTER, c_void_p, c_char_p, c_int, c_long, \
|
|
|
|
Structure, c_ulong, create_string_buffer, cast
|
|
|
|
from ctypes.util import find_library
|
2009-02-19 05:39:43 -07:00
|
|
|
|
2013-10-02 12:59:40 -06:00
|
|
|
if iswindows:
|
2010-11-11 15:11:36 -07:00
|
|
|
libcrypto = find_library('libeay32')
|
|
|
|
else:
|
|
|
|
libcrypto = find_library('crypto')
|
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
if libcrypto is None:
|
|
|
|
raise ADEPTError('libcrypto not found')
|
|
|
|
libcrypto = CDLL(libcrypto)
|
2009-02-19 05:39:43 -07:00
|
|
|
|
2013-04-05 10:44:48 -06:00
|
|
|
RSA_NO_PADDING = 3
|
2013-10-02 12:59:40 -06:00
|
|
|
AES_MAXNR = 14
|
2013-04-05 10:44:48 -06:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
c_char_pp = POINTER(c_char_p)
|
|
|
|
c_int_p = POINTER(c_int)
|
2009-02-19 05:39:43 -07:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
class RSA(Structure):
|
|
|
|
pass
|
|
|
|
RSA_p = POINTER(RSA)
|
2012-03-06 11:24:28 -07:00
|
|
|
|
2013-10-02 12:59:40 -06:00
|
|
|
class AES_KEY(Structure):
|
|
|
|
_fields_ = [('rd_key', c_long * (4 * (AES_MAXNR + 1))),
|
|
|
|
('rounds', c_int)]
|
|
|
|
AES_KEY_p = POINTER(AES_KEY)
|
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
def F(restype, name, argtypes):
|
|
|
|
func = getattr(libcrypto, name)
|
|
|
|
func.restype = restype
|
|
|
|
func.argtypes = argtypes
|
|
|
|
return func
|
2012-03-06 11:24:28 -07:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
d2i_RSAPrivateKey = F(RSA_p, 'd2i_RSAPrivateKey',
|
|
|
|
[RSA_p, c_char_pp, c_long])
|
|
|
|
RSA_size = F(c_int, 'RSA_size', [RSA_p])
|
|
|
|
RSA_private_decrypt = F(c_int, 'RSA_private_decrypt',
|
|
|
|
[c_int, c_char_p, c_char_p, RSA_p, c_int])
|
|
|
|
RSA_free = F(None, 'RSA_free', [RSA_p])
|
2013-10-02 12:59:40 -06:00
|
|
|
AES_set_decrypt_key = F(c_int, 'AES_set_decrypt_key',
|
|
|
|
[c_char_p, c_int, AES_KEY_p])
|
|
|
|
AES_cbc_encrypt = F(None, 'AES_cbc_encrypt',
|
|
|
|
[c_char_p, c_char_p, c_ulong, AES_KEY_p, c_char_p,
|
|
|
|
c_int])
|
2012-03-06 11:24:28 -07:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
class RSA(object):
|
|
|
|
def __init__(self, der):
|
|
|
|
buf = create_string_buffer(der)
|
|
|
|
pp = c_char_pp(cast(buf, c_char_p))
|
2016-01-14 10:15:43 -07:00
|
|
|
rsa = self._rsa = d2i_RSAPrivateKey(None, pp, len(der))
|
2010-07-24 05:55:24 -06:00
|
|
|
if rsa is None:
|
|
|
|
raise ADEPTError('Error parsing ADEPT user key DER')
|
2012-03-06 11:24:28 -07:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
def decrypt(self, from_):
|
|
|
|
rsa = self._rsa
|
|
|
|
to = create_string_buffer(RSA_size(rsa))
|
|
|
|
dlen = RSA_private_decrypt(len(from_), from_, to, rsa,
|
|
|
|
RSA_NO_PADDING)
|
|
|
|
if dlen < 0:
|
|
|
|
raise ADEPTError('RSA decryption failed')
|
2013-10-02 12:59:40 -06:00
|
|
|
return to[:dlen]
|
2012-03-06 11:24:28 -07:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
def __del__(self):
|
|
|
|
if self._rsa is not None:
|
|
|
|
RSA_free(self._rsa)
|
|
|
|
self._rsa = None
|
|
|
|
|
|
|
|
class AES(object):
|
2013-10-02 12:59:40 -06:00
|
|
|
def __init__(self, userkey):
|
2010-07-24 05:55:24 -06:00
|
|
|
self._blocksize = len(userkey)
|
2010-11-11 15:11:36 -07:00
|
|
|
if (self._blocksize != 16) and (self._blocksize != 24) and (self._blocksize != 32) :
|
|
|
|
raise ADEPTError('AES improper key used')
|
|
|
|
return
|
2013-10-02 12:59:40 -06:00
|
|
|
key = self._key = AES_KEY()
|
|
|
|
rv = AES_set_decrypt_key(userkey, len(userkey) * 8, key)
|
2010-07-24 05:55:24 -06:00
|
|
|
if rv < 0:
|
|
|
|
raise ADEPTError('Failed to initialize AES key')
|
2013-10-02 12:59:40 -06:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
def decrypt(self, data):
|
|
|
|
out = create_string_buffer(len(data))
|
2020-05-08 09:57:28 -06:00
|
|
|
iv = (b"\x00" * self._blocksize)
|
2013-10-02 12:59:40 -06:00
|
|
|
rv = AES_cbc_encrypt(data, out, len(data), self._key, iv, 0)
|
2010-07-24 05:55:24 -06:00
|
|
|
if rv == 0:
|
|
|
|
raise ADEPTError('AES decryption failed')
|
|
|
|
return out.raw
|
|
|
|
|
2013-10-02 12:59:40 -06:00
|
|
|
return (AES, RSA)
|
2010-07-24 05:55:24 -06:00
|
|
|
|
|
|
|
def _load_crypto_pycrypto():
|
2021-12-23 03:29:58 -07:00
|
|
|
try:
|
|
|
|
from Cryptodome.Cipher import AES as _AES
|
|
|
|
from Cryptodome.PublicKey import RSA as _RSA
|
|
|
|
from Cryptodome.Cipher import PKCS1_v1_5 as _PKCS1_v1_5
|
|
|
|
except:
|
|
|
|
from Crypto.Cipher import AES as _AES
|
|
|
|
from Crypto.PublicKey import RSA as _RSA
|
|
|
|
from Crypto.Cipher import PKCS1_v1_5 as _PKCS1_v1_5
|
2010-07-24 05:55:24 -06:00
|
|
|
|
|
|
|
# ASN.1 parsing code from tlslite
|
|
|
|
class ASN1Error(Exception):
|
|
|
|
pass
|
2012-03-06 11:24:28 -07:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
class ASN1Parser(object):
|
|
|
|
class Parser(object):
|
|
|
|
def __init__(self, bytes):
|
|
|
|
self.bytes = bytes
|
|
|
|
self.index = 0
|
2012-03-06 11:24:28 -07:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
def get(self, length):
|
|
|
|
if self.index + length > len(self.bytes):
|
|
|
|
raise ASN1Error("Error decoding ASN.1")
|
|
|
|
x = 0
|
|
|
|
for count in range(length):
|
|
|
|
x <<= 8
|
|
|
|
x |= self.bytes[self.index]
|
|
|
|
self.index += 1
|
|
|
|
return x
|
2012-03-06 11:24:28 -07:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
def getFixBytes(self, lengthBytes):
|
|
|
|
bytes = self.bytes[self.index : self.index+lengthBytes]
|
|
|
|
self.index += lengthBytes
|
|
|
|
return bytes
|
2012-03-06 11:24:28 -07:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
def getVarBytes(self, lengthLength):
|
|
|
|
lengthBytes = self.get(lengthLength)
|
|
|
|
return self.getFixBytes(lengthBytes)
|
2012-03-06 11:24:28 -07:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
def getFixList(self, length, lengthList):
|
|
|
|
l = [0] * lengthList
|
|
|
|
for x in range(lengthList):
|
|
|
|
l[x] = self.get(length)
|
|
|
|
return l
|
2012-03-06 11:24:28 -07:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
def getVarList(self, length, lengthLength):
|
|
|
|
lengthList = self.get(lengthLength)
|
|
|
|
if lengthList % length != 0:
|
|
|
|
raise ASN1Error("Error decoding ASN.1")
|
|
|
|
lengthList = int(lengthList/length)
|
|
|
|
l = [0] * lengthList
|
|
|
|
for x in range(lengthList):
|
|
|
|
l[x] = self.get(length)
|
|
|
|
return l
|
2012-03-06 11:24:28 -07:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
def startLengthCheck(self, lengthLength):
|
|
|
|
self.lengthCheck = self.get(lengthLength)
|
|
|
|
self.indexCheck = self.index
|
2012-03-06 11:24:28 -07:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
def setLengthCheck(self, length):
|
|
|
|
self.lengthCheck = length
|
|
|
|
self.indexCheck = self.index
|
2012-03-06 11:24:28 -07:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
def stopLengthCheck(self):
|
|
|
|
if (self.index - self.indexCheck) != self.lengthCheck:
|
|
|
|
raise ASN1Error("Error decoding ASN.1")
|
2012-03-06 11:24:28 -07:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
def atLengthCheck(self):
|
|
|
|
if (self.index - self.indexCheck) < self.lengthCheck:
|
|
|
|
return False
|
|
|
|
elif (self.index - self.indexCheck) == self.lengthCheck:
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
raise ASN1Error("Error decoding ASN.1")
|
2012-03-06 11:24:28 -07:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
def __init__(self, bytes):
|
|
|
|
p = self.Parser(bytes)
|
2009-02-19 05:39:43 -07:00
|
|
|
p.get(1)
|
2010-07-24 05:55:24 -06:00
|
|
|
self.length = self._getASN1Length(p)
|
|
|
|
self.value = p.getFixBytes(self.length)
|
2012-03-06 11:24:28 -07:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
def getChild(self, which):
|
|
|
|
p = self.Parser(self.value)
|
|
|
|
for x in range(which+1):
|
|
|
|
markIndex = p.index
|
|
|
|
p.get(1)
|
|
|
|
length = self._getASN1Length(p)
|
|
|
|
p.getFixBytes(length)
|
|
|
|
return ASN1Parser(p.bytes[markIndex:p.index])
|
2012-03-06 11:24:28 -07:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
def _getASN1Length(self, p):
|
|
|
|
firstLength = p.get(1)
|
|
|
|
if firstLength<=127:
|
|
|
|
return firstLength
|
|
|
|
else:
|
|
|
|
lengthLength = firstLength & 0x7F
|
|
|
|
return p.get(lengthLength)
|
|
|
|
|
2013-04-05 10:44:48 -06:00
|
|
|
class AES(object):
|
2013-10-02 12:59:40 -06:00
|
|
|
def __init__(self, key):
|
2020-11-22 08:03:45 -07:00
|
|
|
self._aes = _AES.new(key, _AES.MODE_CBC, b'\x00'*16)
|
2013-10-02 12:59:40 -06:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
def decrypt(self, data):
|
|
|
|
return self._aes.decrypt(data)
|
|
|
|
|
|
|
|
class RSA(object):
|
|
|
|
def __init__(self, der):
|
2020-11-22 08:03:45 -07:00
|
|
|
key = ASN1Parser([x for x in der])
|
2020-05-08 09:35:01 -06:00
|
|
|
key = [key.getChild(x).value for x in range(1, 4)]
|
2010-07-24 05:55:24 -06:00
|
|
|
key = [self.bytesToNumber(v) for v in key]
|
|
|
|
self._rsa = _RSA.construct(key)
|
2016-01-10 23:44:44 -07:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
def bytesToNumber(self, bytes):
|
2020-05-08 09:35:01 -06:00
|
|
|
total = 0
|
2010-07-24 05:55:24 -06:00
|
|
|
for byte in bytes:
|
|
|
|
total = (total << 8) + byte
|
2020-11-25 01:36:06 -07:00
|
|
|
return total
|
2012-03-06 11:24:28 -07:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
def decrypt(self, data):
|
2020-11-22 08:03:45 -07:00
|
|
|
return _PKCS1_v1_5.new(self._rsa).decrypt(data, 172)
|
2009-02-19 05:39:43 -07:00
|
|
|
|
2013-10-02 12:59:40 -06:00
|
|
|
return (AES, RSA)
|
2009-02-19 05:39:43 -07:00
|
|
|
|
2010-07-24 05:55:24 -06:00
|
|
|
def _load_crypto():
|
2013-10-02 12:59:40 -06:00
|
|
|
AES = RSA = None
|
2011-01-06 00:10:38 -07:00
|
|
|
cryptolist = (_load_crypto_libcrypto, _load_crypto_pycrypto)
|
|
|
|
if sys.platform.startswith('win'):
|
|
|
|
cryptolist = (_load_crypto_pycrypto, _load_crypto_libcrypto)
|
|
|
|
for loader in cryptolist:
|
2010-07-24 05:55:24 -06:00
|
|
|
try:
|
2013-10-02 12:59:40 -06:00
|
|
|
AES, RSA = loader()
|
2010-07-24 05:55:24 -06:00
|
|
|
break
|
|
|
|
except (ImportError, ADEPTError):
|
|
|
|
pass
|
2013-10-02 12:59:40 -06:00
|
|
|
return (AES, RSA)
|
|
|
|
|
|
|
|
AES, RSA = _load_crypto()
|
|
|
|
|
2021-11-15 10:38:34 -07:00
|
|
|
META_NAMES = ('mimetype', 'META-INF/rights.xml')
|
2013-10-02 12:59:40 -06:00
|
|
|
NSMAP = {'adept': 'http://ns.adobe.com/adept',
|
|
|
|
'enc': 'http://www.w3.org/2001/04/xmlenc#'}
|
|
|
|
|
|
|
|
class Decryptor(object):
|
|
|
|
def __init__(self, bookkey, encryption):
|
|
|
|
enc = lambda tag: '{%s}%s' % (NSMAP['enc'], tag)
|
|
|
|
self._aes = AES(bookkey)
|
|
|
|
encryption = etree.fromstring(encryption)
|
|
|
|
self._encrypted = encrypted = set()
|
2021-11-15 10:38:34 -07:00
|
|
|
self._otherData = otherData = set()
|
|
|
|
|
|
|
|
self._json_elements_to_remove = json_elements_to_remove = set()
|
|
|
|
self._has_remaining_xml = False
|
2013-10-02 12:59:40 -06:00
|
|
|
expr = './%s/%s/%s' % (enc('EncryptedData'), enc('CipherData'),
|
|
|
|
enc('CipherReference'))
|
|
|
|
for elem in encryption.findall(expr):
|
|
|
|
path = elem.get('URI', None)
|
2021-11-15 10:38:34 -07:00
|
|
|
encryption_type_url = (elem.getparent().getparent().find("./%s" % (enc('EncryptionMethod'))).get('Algorithm', None))
|
2013-10-02 12:59:40 -06:00
|
|
|
if path is not None:
|
2021-11-15 10:38:34 -07:00
|
|
|
if (encryption_type_url == "http://www.w3.org/2001/04/xmlenc#aes128-cbc"):
|
|
|
|
# Adobe
|
|
|
|
path = path.encode('utf-8')
|
|
|
|
encrypted.add(path)
|
|
|
|
json_elements_to_remove.add(elem.getparent().getparent())
|
|
|
|
else:
|
|
|
|
path = path.encode('utf-8')
|
|
|
|
otherData.add(path)
|
|
|
|
self._has_remaining_xml = True
|
|
|
|
|
|
|
|
for elem in json_elements_to_remove:
|
|
|
|
elem.getparent().remove(elem)
|
|
|
|
|
|
|
|
def check_if_remaining(self):
|
|
|
|
return self._has_remaining_xml
|
|
|
|
|
|
|
|
def get_xml(self):
|
|
|
|
return "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + etree.tostring(self._encryption, encoding="utf-8", pretty_print=True, xml_declaration=False).decode("utf-8")
|
|
|
|
|
2013-10-02 12:59:40 -06:00
|
|
|
|
|
|
|
def decompress(self, bytes):
|
|
|
|
dc = zlib.decompressobj(-15)
|
2020-12-27 05:16:11 -07:00
|
|
|
try:
|
|
|
|
decompressed_bytes = dc.decompress(bytes)
|
|
|
|
ex = dc.decompress(b'Z') + dc.flush()
|
|
|
|
if ex:
|
|
|
|
decompressed_bytes = decompressed_bytes + ex
|
|
|
|
except:
|
|
|
|
# possibly not compressed by zip - just return bytes
|
|
|
|
return bytes
|
|
|
|
return decompressed_bytes
|
|
|
|
|
2013-10-02 12:59:40 -06:00
|
|
|
def decrypt(self, path, data):
|
2015-03-09 01:38:31 -06:00
|
|
|
if path.encode('utf-8') in self._encrypted:
|
2013-10-02 12:59:40 -06:00
|
|
|
data = self._aes.decrypt(data)[16:]
|
2020-05-08 09:57:28 -06:00
|
|
|
if type(data[-1]) != int:
|
|
|
|
place = ord(data[-1])
|
|
|
|
else:
|
|
|
|
place = data[-1]
|
|
|
|
data = data[:-place]
|
2013-10-02 12:59:40 -06:00
|
|
|
data = self.decompress(data)
|
2013-04-05 10:44:48 -06:00
|
|
|
return data
|
2012-12-19 06:48:11 -07:00
|
|
|
|
2013-10-02 12:59:40 -06:00
|
|
|
# check file to make check whether it's probably an Adobe Adept encrypted ePub
|
|
|
|
def adeptBook(inpath):
|
|
|
|
with closing(ZipFile(open(inpath, 'rb'))) as inf:
|
|
|
|
namelist = set(inf.namelist())
|
|
|
|
if 'META-INF/rights.xml' not in namelist or \
|
|
|
|
'META-INF/encryption.xml' not in namelist:
|
|
|
|
return False
|
2012-12-19 06:48:11 -07:00
|
|
|
try:
|
2013-10-02 12:59:40 -06:00
|
|
|
rights = etree.fromstring(inf.read('META-INF/rights.xml'))
|
|
|
|
adept = lambda tag: '{%s}%s' % (NSMAP['adept'], tag)
|
|
|
|
expr = './/%s' % (adept('encryptedKey'),)
|
|
|
|
bookkey = ''.join(rights.findtext(expr))
|
2021-12-23 03:29:58 -07:00
|
|
|
if len(bookkey) in [192, 172, 64]:
|
2013-10-02 12:59:40 -06:00
|
|
|
return True
|
|
|
|
except:
|
|
|
|
# if we couldn't check, assume it is
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2021-12-23 03:29:58 -07:00
|
|
|
def isPassHashBook(inpath):
|
|
|
|
# If this is an Adobe book, check if it's a PassHash-encrypted book (B&N)
|
|
|
|
with closing(ZipFile(open(inpath, 'rb'))) as inf:
|
|
|
|
namelist = set(inf.namelist())
|
|
|
|
if 'META-INF/rights.xml' not in namelist or \
|
|
|
|
'META-INF/encryption.xml' not in namelist:
|
|
|
|
return False
|
|
|
|
try:
|
|
|
|
rights = etree.fromstring(inf.read('META-INF/rights.xml'))
|
|
|
|
adept = lambda tag: '{%s}%s' % (NSMAP['adept'], tag)
|
|
|
|
expr = './/%s' % (adept('encryptedKey'),)
|
|
|
|
bookkey = ''.join(rights.findtext(expr))
|
|
|
|
if len(bookkey) == 64:
|
|
|
|
return True
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
2021-11-15 03:59:56 -07:00
|
|
|
# Checks the license file and returns the UUID the book is licensed for.
|
|
|
|
# This is used so that the Calibre plugin can pick the correct decryption key
|
|
|
|
# first try without having to loop through all possible keys.
|
|
|
|
def adeptGetUserUUID(inpath):
|
|
|
|
with closing(ZipFile(open(inpath, 'rb'))) as inf:
|
|
|
|
try:
|
|
|
|
rights = etree.fromstring(inf.read('META-INF/rights.xml'))
|
|
|
|
adept = lambda tag: '{%s}%s' % (NSMAP['adept'], tag)
|
|
|
|
expr = './/%s' % (adept('user'),)
|
|
|
|
user_uuid = ''.join(rights.findtext(expr))
|
|
|
|
if user_uuid[:9] != "urn:uuid:":
|
|
|
|
return None
|
|
|
|
return user_uuid[9:]
|
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
|
|
|
def verify_book_key(bookkey):
|
|
|
|
if bookkey[-17] != '\x00' and bookkey[-17] != 0:
|
|
|
|
# Byte not null, invalid result
|
|
|
|
return False
|
|
|
|
|
|
|
|
if ((bookkey[0] != '\x02' and bookkey[0] != 2) and
|
|
|
|
((bookkey[0] != '\x00' and bookkey[0] != 0) or
|
|
|
|
(bookkey[1] != '\x02' and bookkey[1] != 2))):
|
|
|
|
# Key not starting with "00 02" or "02" -> error
|
|
|
|
return False
|
|
|
|
|
|
|
|
keylen = len(bookkey) - 17
|
|
|
|
for i in range(1, keylen):
|
|
|
|
if bookkey[i] == 0 or bookkey[i] == '\x00':
|
|
|
|
# Padding data contains a space - that's not allowed.
|
|
|
|
# Probably bad decryption.
|
|
|
|
return False
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
2013-10-02 12:59:40 -06:00
|
|
|
def decryptBook(userkey, inpath, outpath):
|
|
|
|
if AES is None:
|
2020-09-27 04:54:49 -06:00
|
|
|
raise ADEPTError("PyCrypto or OpenSSL must be installed.")
|
2021-12-23 03:29:58 -07:00
|
|
|
|
2013-10-02 12:59:40 -06:00
|
|
|
with closing(ZipFile(open(inpath, 'rb'))) as inf:
|
2021-11-15 10:38:34 -07:00
|
|
|
namelist = inf.namelist()
|
2013-10-02 12:59:40 -06:00
|
|
|
if 'META-INF/rights.xml' not in namelist or \
|
|
|
|
'META-INF/encryption.xml' not in namelist:
|
2020-09-27 04:54:49 -06:00
|
|
|
print("{0:s} is DRM-free.".format(os.path.basename(inpath)))
|
2013-10-02 12:59:40 -06:00
|
|
|
return 1
|
|
|
|
for name in META_NAMES:
|
|
|
|
namelist.remove(name)
|
2013-04-05 10:44:48 -06:00
|
|
|
try:
|
2013-10-02 12:59:40 -06:00
|
|
|
rights = etree.fromstring(inf.read('META-INF/rights.xml'))
|
|
|
|
adept = lambda tag: '{%s}%s' % (NSMAP['adept'], tag)
|
|
|
|
expr = './/%s' % (adept('encryptedKey'),)
|
|
|
|
bookkey = ''.join(rights.findtext(expr))
|
2021-11-15 11:51:36 -07:00
|
|
|
if len(bookkey) == 192:
|
|
|
|
print("{0:s} seems to be an Adobe ADEPT ePub with Adobe's new DRM".format(os.path.basename(inpath)))
|
|
|
|
print("This DRM cannot be removed yet. ")
|
|
|
|
print("Try getting your distributor to give you a new ACSM file, then open that in an old version of ADE (2.0).")
|
|
|
|
print("If your book distributor is not enforcing the new DRM yet, this will give you a copy with the old DRM.")
|
|
|
|
raise ADEPTNewVersionError("Book uses new ADEPT encryption")
|
2021-12-23 03:29:58 -07:00
|
|
|
|
|
|
|
if len(bookkey) == 172:
|
|
|
|
print("{0:s} is a secure Adobe Adept ePub.".format(os.path.basename(inpath)))
|
|
|
|
elif len(bookkey) == 64:
|
|
|
|
print("{0:s} is a secure Adobe PassHash (B&N) ePub.".format(os.path.basename(inpath)))
|
|
|
|
else:
|
|
|
|
print("{0:s} is not an Adobe-protected ePub!".format(os.path.basename(inpath)))
|
2013-10-02 12:59:40 -06:00
|
|
|
return 1
|
2021-12-23 03:29:58 -07:00
|
|
|
|
|
|
|
if len(bookkey) != 64:
|
|
|
|
# Normal Adobe ADEPT
|
|
|
|
rsa = RSA(userkey)
|
|
|
|
bookkey = rsa.decrypt(base64.b64decode(bookkey.encode('ascii')))
|
|
|
|
else:
|
|
|
|
# Adobe PassHash / B&N
|
|
|
|
key = base64.b64decode(userkey)[:16]
|
|
|
|
aes = AES(key)
|
|
|
|
bookkey = aes.decrypt(base64.b64decode(bookkey))
|
|
|
|
if type(bookkey[-1]) != int:
|
|
|
|
pad = ord(bookkey[-1])
|
|
|
|
else:
|
|
|
|
pad = bookkey[-1]
|
|
|
|
|
|
|
|
bookkey = bookkey[:-pad]
|
|
|
|
|
|
|
|
|
2013-10-02 12:59:40 -06:00
|
|
|
# Padded as per RSAES-PKCS1-v1_5
|
2021-01-28 05:06:59 -07:00
|
|
|
if len(bookkey) > 16:
|
2021-11-15 03:59:56 -07:00
|
|
|
if verify_book_key(bookkey):
|
2021-01-28 05:06:59 -07:00
|
|
|
bookkey = bookkey[-16:]
|
|
|
|
else:
|
2020-11-22 08:03:45 -07:00
|
|
|
print("Could not decrypt {0:s}. Wrong key".format(os.path.basename(inpath)))
|
|
|
|
return 2
|
2021-12-23 03:29:58 -07:00
|
|
|
|
2013-10-02 12:59:40 -06:00
|
|
|
encryption = inf.read('META-INF/encryption.xml')
|
2020-11-22 08:03:45 -07:00
|
|
|
decryptor = Decryptor(bookkey, encryption)
|
2013-10-02 12:59:40 -06:00
|
|
|
kwds = dict(compression=ZIP_DEFLATED, allowZip64=False)
|
|
|
|
with closing(ZipFile(open(outpath, 'wb'), 'w', **kwds)) as outf:
|
2021-11-15 10:38:34 -07:00
|
|
|
|
|
|
|
for path in (["mimetype"] + namelist):
|
2013-10-02 12:59:40 -06:00
|
|
|
data = inf.read(path)
|
|
|
|
zi = ZipInfo(path)
|
|
|
|
zi.compress_type=ZIP_DEFLATED
|
2021-11-15 10:38:34 -07:00
|
|
|
|
|
|
|
if path == "mimetype":
|
|
|
|
zi.compress_type = ZIP_STORED
|
|
|
|
|
|
|
|
elif path == "META-INF/encryption.xml":
|
|
|
|
# Check if there's still something in there
|
|
|
|
if (decryptor.check_if_remaining()):
|
|
|
|
data = decryptor.get_xml()
|
|
|
|
print("Adding encryption.xml for the remaining embedded files.")
|
|
|
|
# We removed DRM, but there's still stuff like obfuscated fonts.
|
|
|
|
else:
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
2013-03-20 04:23:54 -06:00
|
|
|
try:
|
2013-10-02 12:59:40 -06:00
|
|
|
# get the file info, including time-stamp
|
|
|
|
oldzi = inf.getinfo(path)
|
|
|
|
# copy across useful fields
|
|
|
|
zi.date_time = oldzi.date_time
|
|
|
|
zi.comment = oldzi.comment
|
|
|
|
zi.extra = oldzi.extra
|
|
|
|
zi.internal_attr = oldzi.internal_attr
|
|
|
|
# external attributes are dependent on the create system, so copy both.
|
|
|
|
zi.external_attr = oldzi.external_attr
|
|
|
|
zi.create_system = oldzi.create_system
|
2021-11-15 10:38:34 -07:00
|
|
|
if any(ord(c) >= 128 for c in path) or any(ord(c) >= 128 for c in zi.comment):
|
|
|
|
# If the file name or the comment contains any non-ASCII char, set the UTF8-flag
|
|
|
|
zi.flag_bits |= 0x800
|
2013-10-02 12:59:40 -06:00
|
|
|
except:
|
2013-03-20 04:23:54 -06:00
|
|
|
pass
|
2021-11-15 10:38:34 -07:00
|
|
|
if path == "META-INF/encryption.xml":
|
|
|
|
outf.writestr(zi, data)
|
|
|
|
else:
|
|
|
|
outf.writestr(zi, decryptor.decrypt(path, data))
|
2012-12-19 06:48:11 -07:00
|
|
|
except:
|
2020-09-27 04:54:49 -06:00
|
|
|
print("Could not decrypt {0:s} because of an exception:\n{1:s}".format(os.path.basename(inpath), traceback.format_exc()))
|
2012-12-19 06:48:11 -07:00
|
|
|
return 2
|
2011-01-17 00:24:53 -07:00
|
|
|
return 0
|
|
|
|
|
|
|
|
|
2013-03-26 10:38:18 -06:00
|
|
|
def cli_main():
|
2013-04-05 10:44:48 -06:00
|
|
|
sys.stdout=SafeUnbuffered(sys.stdout)
|
|
|
|
sys.stderr=SafeUnbuffered(sys.stderr)
|
2013-03-26 10:38:18 -06:00
|
|
|
argv=unicode_argv()
|
2011-01-17 00:24:53 -07:00
|
|
|
progname = os.path.basename(argv[0])
|
|
|
|
if len(argv) != 4:
|
2020-09-27 04:54:49 -06:00
|
|
|
print("usage: {0} <keyfile.der> <inbook.epub> <outbook.epub>".format(progname))
|
2011-01-17 00:24:53 -07:00
|
|
|
return 1
|
|
|
|
keypath, inpath, outpath = argv[1:]
|
2012-12-19 06:48:11 -07:00
|
|
|
userkey = open(keypath,'rb').read()
|
|
|
|
result = decryptBook(userkey, inpath, outpath)
|
|
|
|
if result == 0:
|
2020-09-27 04:54:49 -06:00
|
|
|
print("Successfully decrypted {0:s} as {1:s}".format(os.path.basename(inpath),os.path.basename(outpath)))
|
2012-12-19 06:48:11 -07:00
|
|
|
return result
|
2011-01-17 00:24:53 -07:00
|
|
|
|
2009-02-19 05:39:43 -07:00
|
|
|
def gui_main():
|
2013-04-05 10:44:48 -06:00
|
|
|
try:
|
2020-10-14 09:23:49 -06:00
|
|
|
import tkinter
|
2020-11-22 08:03:45 -07:00
|
|
|
import tkinter.constants
|
|
|
|
import tkinter.filedialog
|
|
|
|
import tkinter.messagebox
|
2013-04-05 10:44:48 -06:00
|
|
|
import traceback
|
|
|
|
except:
|
|
|
|
return cli_main()
|
2012-12-19 06:48:11 -07:00
|
|
|
|
2020-10-14 09:23:49 -06:00
|
|
|
class DecryptionDialog(tkinter.Frame):
|
2012-12-19 06:48:11 -07:00
|
|
|
def __init__(self, root):
|
2020-10-14 09:23:49 -06:00
|
|
|
tkinter.Frame.__init__(self, root, border=5)
|
|
|
|
self.status = tkinter.Label(self, text="Select files for decryption")
|
2020-11-22 08:03:45 -07:00
|
|
|
self.status.pack(fill=tkinter.constants.X, expand=1)
|
2020-10-14 09:23:49 -06:00
|
|
|
body = tkinter.Frame(self)
|
2020-11-22 08:03:45 -07:00
|
|
|
body.pack(fill=tkinter.constants.X, expand=1)
|
|
|
|
sticky = tkinter.constants.E + tkinter.constants.W
|
2012-12-19 06:48:11 -07:00
|
|
|
body.grid_columnconfigure(1, weight=2)
|
2020-10-14 09:23:49 -06:00
|
|
|
tkinter.Label(body, text="Key file").grid(row=0)
|
|
|
|
self.keypath = tkinter.Entry(body, width=30)
|
2012-12-19 06:48:11 -07:00
|
|
|
self.keypath.grid(row=0, column=1, sticky=sticky)
|
2020-09-27 04:54:49 -06:00
|
|
|
if os.path.exists("adeptkey.der"):
|
|
|
|
self.keypath.insert(0, "adeptkey.der")
|
2020-10-14 09:23:49 -06:00
|
|
|
button = tkinter.Button(body, text="...", command=self.get_keypath)
|
2012-12-19 06:48:11 -07:00
|
|
|
button.grid(row=0, column=2)
|
2020-10-14 09:23:49 -06:00
|
|
|
tkinter.Label(body, text="Input file").grid(row=1)
|
|
|
|
self.inpath = tkinter.Entry(body, width=30)
|
2012-12-19 06:48:11 -07:00
|
|
|
self.inpath.grid(row=1, column=1, sticky=sticky)
|
2020-10-14 09:23:49 -06:00
|
|
|
button = tkinter.Button(body, text="...", command=self.get_inpath)
|
2012-12-19 06:48:11 -07:00
|
|
|
button.grid(row=1, column=2)
|
2020-10-14 09:23:49 -06:00
|
|
|
tkinter.Label(body, text="Output file").grid(row=2)
|
|
|
|
self.outpath = tkinter.Entry(body, width=30)
|
2012-12-19 06:48:11 -07:00
|
|
|
self.outpath.grid(row=2, column=1, sticky=sticky)
|
2020-10-14 09:23:49 -06:00
|
|
|
button = tkinter.Button(body, text="...", command=self.get_outpath)
|
2012-12-19 06:48:11 -07:00
|
|
|
button.grid(row=2, column=2)
|
2020-10-14 09:23:49 -06:00
|
|
|
buttons = tkinter.Frame(self)
|
2012-12-19 06:48:11 -07:00
|
|
|
buttons.pack()
|
2020-10-14 09:23:49 -06:00
|
|
|
botton = tkinter.Button(
|
2020-09-27 04:54:49 -06:00
|
|
|
buttons, text="Decrypt", width=10, command=self.decrypt)
|
2020-11-22 08:03:45 -07:00
|
|
|
botton.pack(side=tkinter.constants.LEFT)
|
|
|
|
tkinter.Frame(buttons, width=10).pack(side=tkinter.constants.LEFT)
|
2020-10-14 09:23:49 -06:00
|
|
|
button = tkinter.Button(
|
2020-09-27 04:54:49 -06:00
|
|
|
buttons, text="Quit", width=10, command=self.quit)
|
2020-11-22 08:03:45 -07:00
|
|
|
button.pack(side=tkinter.constants.RIGHT)
|
2012-12-19 06:48:11 -07:00
|
|
|
|
|
|
|
def get_keypath(self):
|
2020-11-22 08:03:45 -07:00
|
|
|
keypath = tkinter.filedialog.askopenfilename(
|
2020-09-27 04:54:49 -06:00
|
|
|
parent=None, title="Select Adobe Adept \'.der\' key file",
|
|
|
|
defaultextension=".der",
|
2012-12-19 06:48:11 -07:00
|
|
|
filetypes=[('Adobe Adept DER-encoded files', '.der'),
|
|
|
|
('All Files', '.*')])
|
|
|
|
if keypath:
|
|
|
|
keypath = os.path.normpath(keypath)
|
2020-11-22 08:03:45 -07:00
|
|
|
self.keypath.delete(0, tkinter.constants.END)
|
2012-12-19 06:48:11 -07:00
|
|
|
self.keypath.insert(0, keypath)
|
|
|
|
return
|
|
|
|
|
|
|
|
def get_inpath(self):
|
2020-11-22 08:03:45 -07:00
|
|
|
inpath = tkinter.filedialog.askopenfilename(
|
2020-09-27 04:54:49 -06:00
|
|
|
parent=None, title="Select ADEPT-encrypted ePub file to decrypt",
|
|
|
|
defaultextension=".epub", filetypes=[('ePub files', '.epub')])
|
2012-12-19 06:48:11 -07:00
|
|
|
if inpath:
|
|
|
|
inpath = os.path.normpath(inpath)
|
2020-11-22 08:03:45 -07:00
|
|
|
self.inpath.delete(0, tkinter.constants.END)
|
2012-12-19 06:48:11 -07:00
|
|
|
self.inpath.insert(0, inpath)
|
|
|
|
return
|
|
|
|
|
|
|
|
def get_outpath(self):
|
2020-11-22 08:03:45 -07:00
|
|
|
outpath = tkinter.filedialog.asksaveasfilename(
|
2020-09-27 04:54:49 -06:00
|
|
|
parent=None, title="Select unencrypted ePub file to produce",
|
|
|
|
defaultextension=".epub", filetypes=[('ePub files', '.epub')])
|
2012-12-19 06:48:11 -07:00
|
|
|
if outpath:
|
|
|
|
outpath = os.path.normpath(outpath)
|
2020-11-22 08:03:45 -07:00
|
|
|
self.outpath.delete(0, tkinter.constants.END)
|
2012-12-19 06:48:11 -07:00
|
|
|
self.outpath.insert(0, outpath)
|
|
|
|
return
|
|
|
|
|
|
|
|
def decrypt(self):
|
|
|
|
keypath = self.keypath.get()
|
|
|
|
inpath = self.inpath.get()
|
|
|
|
outpath = self.outpath.get()
|
|
|
|
if not keypath or not os.path.exists(keypath):
|
2020-09-27 04:54:49 -06:00
|
|
|
self.status['text'] = "Specified key file does not exist"
|
2012-12-19 06:48:11 -07:00
|
|
|
return
|
|
|
|
if not inpath or not os.path.exists(inpath):
|
2020-09-27 04:54:49 -06:00
|
|
|
self.status['text'] = "Specified input file does not exist"
|
2012-12-19 06:48:11 -07:00
|
|
|
return
|
|
|
|
if not outpath:
|
2020-09-27 04:54:49 -06:00
|
|
|
self.status['text'] = "Output file not specified"
|
2012-12-19 06:48:11 -07:00
|
|
|
return
|
|
|
|
if inpath == outpath:
|
2020-09-27 04:54:49 -06:00
|
|
|
self.status['text'] = "Must have different input and output files"
|
2012-12-19 06:48:11 -07:00
|
|
|
return
|
|
|
|
userkey = open(keypath,'rb').read()
|
2020-09-27 04:54:49 -06:00
|
|
|
self.status['text'] = "Decrypting..."
|
2012-12-19 06:48:11 -07:00
|
|
|
try:
|
|
|
|
decrypt_status = decryptBook(userkey, inpath, outpath)
|
2020-05-08 09:35:01 -06:00
|
|
|
except Exception as e:
|
2020-09-27 04:54:49 -06:00
|
|
|
self.status['text'] = "Error: {0}".format(e.args[0])
|
2012-12-19 06:48:11 -07:00
|
|
|
return
|
|
|
|
if decrypt_status == 0:
|
2020-09-27 04:54:49 -06:00
|
|
|
self.status['text'] = "File successfully decrypted"
|
2012-12-19 06:48:11 -07:00
|
|
|
else:
|
2020-11-22 08:03:45 -07:00
|
|
|
self.status['text'] = "There was an error decrypting the file."
|
2012-12-19 06:48:11 -07:00
|
|
|
|
2020-10-14 09:23:49 -06:00
|
|
|
root = tkinter.Tk()
|
2020-09-27 04:54:49 -06:00
|
|
|
root.title("Adobe Adept ePub Decrypter v.{0}".format(__version__))
|
2009-02-19 05:39:43 -07:00
|
|
|
root.resizable(True, False)
|
2013-10-02 12:59:40 -06:00
|
|
|
root.minsize(300, 0)
|
2020-11-22 08:03:45 -07:00
|
|
|
DecryptionDialog(root).pack(fill=tkinter.constants.X, expand=1)
|
2009-02-19 05:39:43 -07:00
|
|
|
root.mainloop()
|
2009-09-01 10:02:35 -06:00
|
|
|
return 0
|
2009-02-19 05:39:43 -07:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2010-02-14 08:47:48 -07:00
|
|
|
if len(sys.argv) > 1:
|
|
|
|
sys.exit(cli_main())
|
2009-02-19 05:39:43 -07:00
|
|
|
sys.exit(gui_main())
|