Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0f475423c0 | ||
|
|
9b946a62b4 | ||
|
|
432eb6f6cb | ||
|
|
85b65f8d61 | ||
|
|
25f5049ab9 |
4
Makefile
4
Makefile
@@ -53,8 +53,8 @@ $(BUILDDIR)/%.$(OBJEXT): $(SRCDIR)/%.$(SRCEXT)
|
|||||||
|
|
||||||
libgourou: libgourou.a libgourou.so
|
libgourou: libgourou.a libgourou.so
|
||||||
|
|
||||||
libgourou.a: $(OBJECTS)
|
libgourou.a: $(OBJECTS) $(UPDFPARSERLIB)
|
||||||
$(AR) crs $@ obj/*.o ./lib/updfparser/obj/*.o
|
$(AR) crs $@ obj/*.o $(UPDFPARSERLIB)
|
||||||
|
|
||||||
libgourou.so: $(OBJECTS) $(UPDFPARSERLIB)
|
libgourou.so: $(OBJECTS) $(UPDFPARSERLIB)
|
||||||
$(CXX) obj/*.o $(LDFLAGS) -o $@ -shared
|
$(CXX) obj/*.o $(LDFLAGS) -o $@ -shared
|
||||||
|
|||||||
@@ -40,7 +40,7 @@
|
|||||||
#define ACS_SERVER "http://adeactivate.adobe.com/adept"
|
#define ACS_SERVER "http://adeactivate.adobe.com/adept"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define LIBGOUROU_VERSION "0.5.2"
|
#define LIBGOUROU_VERSION "0.5.3"
|
||||||
|
|
||||||
namespace gourou
|
namespace gourou
|
||||||
{
|
{
|
||||||
@@ -185,10 +185,16 @@ namespace gourou
|
|||||||
DRMProcessorClient* getClient() { return client; }
|
DRMProcessorClient* getClient() { return client; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Remove ADEPT DRM.
|
* @brief Remove ADEPT DRM
|
||||||
* Warning: for PDF format, filenameIn must be different than filenameOut
|
* Warning: for PDF format, filenameIn must be different than filenameOut
|
||||||
|
*
|
||||||
|
* @param filenameIn Input file (with ADEPT DRM)
|
||||||
|
* @param filenameOut Output file (without ADEPT DRM)
|
||||||
|
* @param type Type of file (ePub or PDF)
|
||||||
|
* @param encryptionKey Optional encryption key, do not try to decrypt the one inside input file
|
||||||
|
* @param encryptionKeySize Size of encryption key (if provided)
|
||||||
*/
|
*/
|
||||||
void removeDRM(const std::string& filenameIn, const std::string& filenameOut, ITEM_TYPE type);
|
void removeDRM(const std::string& filenameIn, const std::string& filenameOut, ITEM_TYPE type, const unsigned char* encryptionKey=0, unsigned encryptionKeySize=0);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
gourou::DRMProcessorClient* client;
|
gourou::DRMProcessorClient* client;
|
||||||
@@ -214,12 +220,12 @@ namespace gourou
|
|||||||
void fetchLicenseServiceCertificate(const std::string& licenseURL,
|
void fetchLicenseServiceCertificate(const std::string& licenseURL,
|
||||||
const std::string& operatorURL);
|
const std::string& operatorURL);
|
||||||
void decryptADEPTKey(const std::string& encryptedKey, unsigned char* decryptedKey);
|
void decryptADEPTKey(const std::string& encryptedKey, unsigned char* decryptedKey);
|
||||||
void removeEPubDRM(const std::string& filenameIn, const std::string& filenameOut);
|
void removeEPubDRM(const std::string& filenameIn, const std::string& filenameOut, const unsigned char* encryptionKey, unsigned encryptionKeySize);
|
||||||
void generatePDFObjectKey(int version,
|
void generatePDFObjectKey(int version,
|
||||||
const unsigned char* masterKey, unsigned int masterKeyLength,
|
const unsigned char* masterKey, unsigned int masterKeyLength,
|
||||||
int objectId, int objectGenerationNumber,
|
int objectId, int objectGenerationNumber,
|
||||||
unsigned char* keyOut);
|
unsigned char* keyOut);
|
||||||
void removePDFDRM(const std::string& filenameIn, const std::string& filenameOut);
|
void removePDFDRM(const std::string& filenameIn, const std::string& filenameOut, const unsigned char* encryptionKey, unsigned encryptionKeySize);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -92,6 +92,7 @@ namespace gourou
|
|||||||
USER_INVALID_ACTIVATION_FILE,
|
USER_INVALID_ACTIVATION_FILE,
|
||||||
USER_NO_AUTHENTICATION_URL,
|
USER_NO_AUTHENTICATION_URL,
|
||||||
USER_NO_PROPERTY,
|
USER_NO_PROPERTY,
|
||||||
|
USER_INVALID_INPUT,
|
||||||
};
|
};
|
||||||
|
|
||||||
enum FULFILL_ITEM_ERROR {
|
enum FULFILL_ITEM_ERROR {
|
||||||
|
|||||||
@@ -949,7 +949,8 @@ namespace gourou
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void DRMProcessor::removeEPubDRM(const std::string& filenameIn, const std::string& filenameOut)
|
void DRMProcessor::removeEPubDRM(const std::string& filenameIn, const std::string& filenameOut,
|
||||||
|
const unsigned char* encryptionKey, unsigned encryptionKeySize)
|
||||||
{
|
{
|
||||||
ByteArray zipData;
|
ByteArray zipData;
|
||||||
bool removeEncryptionXML = true;
|
bool removeEncryptionXML = true;
|
||||||
@@ -962,7 +963,16 @@ namespace gourou
|
|||||||
std::string encryptedKey = extractTextElem(rightsDoc, "/adept:rights/licenseToken/encryptedKey");
|
std::string encryptedKey = extractTextElem(rightsDoc, "/adept:rights/licenseToken/encryptedKey");
|
||||||
unsigned char decryptedKey[RSA_KEY_SIZE];
|
unsigned char decryptedKey[RSA_KEY_SIZE];
|
||||||
|
|
||||||
decryptADEPTKey(encryptedKey, decryptedKey);
|
if (!encryptionKey)
|
||||||
|
decryptADEPTKey(encryptedKey, decryptedKey);
|
||||||
|
else
|
||||||
|
{
|
||||||
|
GOUROU_LOG(DEBUG, "Use provided encryption key");
|
||||||
|
if (encryptionKeySize != 16)
|
||||||
|
EXCEPTION(DRM_ERR_ENCRYPTION_KEY, "Provided encryption key must be 16 bytes");
|
||||||
|
|
||||||
|
memcpy(&decryptedKey[sizeof(decryptedKey)-16], encryptionKey, encryptionKeySize);
|
||||||
|
}
|
||||||
|
|
||||||
client->zipReadFile(zipHandler, "META-INF/encryption.xml", zipData);
|
client->zipReadFile(zipHandler, "META-INF/encryption.xml", zipData);
|
||||||
pugi::xml_document encryptionDoc;
|
pugi::xml_document encryptionDoc;
|
||||||
@@ -1001,7 +1011,7 @@ namespace gourou
|
|||||||
unsigned int dataOutLength;
|
unsigned int dataOutLength;
|
||||||
|
|
||||||
client->Decrypt(CryptoInterface::ALGO_AES, CryptoInterface::CHAIN_CBC,
|
client->Decrypt(CryptoInterface::ALGO_AES, CryptoInterface::CHAIN_CBC,
|
||||||
decryptedKey+RSA_KEY_SIZE-16, 16, /* Key */
|
decryptedKey+sizeof(decryptedKey)-16, 16, /* Key */
|
||||||
_data, 16, /* IV */
|
_data, 16, /* IV */
|
||||||
&_data[16], zipData.length()-16,
|
&_data[16], zipData.length()-16,
|
||||||
_clearData, &dataOutLength);
|
_clearData, &dataOutLength);
|
||||||
@@ -1068,7 +1078,8 @@ namespace gourou
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void DRMProcessor::removePDFDRM(const std::string& filenameIn, const std::string& filenameOut)
|
void DRMProcessor::removePDFDRM(const std::string& filenameIn, const std::string& filenameOut,
|
||||||
|
const unsigned char* encryptionKey, unsigned encryptionKeySize)
|
||||||
{
|
{
|
||||||
uPDFParser::Parser parser;
|
uPDFParser::Parser parser;
|
||||||
bool EBXHandlerFound = false;
|
bool EBXHandlerFound = false;
|
||||||
@@ -1091,16 +1102,18 @@ namespace gourou
|
|||||||
|
|
||||||
uPDFParser::Integer* ebxVersion;
|
uPDFParser::Integer* ebxVersion;
|
||||||
std::vector<uPDFParser::Object*> objects = parser.objects();
|
std::vector<uPDFParser::Object*> objects = parser.objects();
|
||||||
std::vector<uPDFParser::Object*>::reverse_iterator it;
|
std::vector<uPDFParser::Object*>::iterator it;
|
||||||
|
std::vector<uPDFParser::Object*>::reverse_iterator rIt;
|
||||||
unsigned char decryptedKey[RSA_KEY_SIZE];
|
unsigned char decryptedKey[RSA_KEY_SIZE];
|
||||||
|
int ebxId;
|
||||||
|
|
||||||
for(it = objects.rbegin(); it != objects.rend(); it++)
|
for(rIt = objects.rbegin(); rIt != objects.rend(); rIt++)
|
||||||
{
|
{
|
||||||
// Update EBX_HANDLER with rights
|
// Update EBX_HANDLER with rights
|
||||||
if ((*it)->hasKey("Filter") && (**it)["Filter"]->str() == "/EBX_HANDLER")
|
if ((*rIt)->hasKey("Filter") && (**rIt)["Filter"]->str() == "/EBX_HANDLER")
|
||||||
{
|
{
|
||||||
EBXHandlerFound = true;
|
EBXHandlerFound = true;
|
||||||
uPDFParser::Object* ebx = *it;
|
uPDFParser::Object* ebx = *rIt;
|
||||||
|
|
||||||
ebxVersion = (uPDFParser::Integer*)(*ebx)["V"];
|
ebxVersion = (uPDFParser::Integer*)(*ebx)["V"];
|
||||||
if (ebxVersion->value() != 4)
|
if (ebxVersion->value() != 4)
|
||||||
@@ -1115,7 +1128,15 @@ namespace gourou
|
|||||||
|
|
||||||
uPDFParser::String* licenseObject = (uPDFParser::String*)(*ebx)["ADEPT_LICENSE"];
|
uPDFParser::String* licenseObject = (uPDFParser::String*)(*ebx)["ADEPT_LICENSE"];
|
||||||
|
|
||||||
ByteArray zippedData = ByteArray::fromBase64(licenseObject->value());
|
std::string value = licenseObject->value();
|
||||||
|
// Pad with '='
|
||||||
|
while ((value.size() % 4))
|
||||||
|
value += "=";
|
||||||
|
ByteArray zippedData = ByteArray::fromBase64(value);
|
||||||
|
|
||||||
|
if (zippedData.size() == 0)
|
||||||
|
EXCEPTION(DRM_ERR_ENCRYPTION_KEY, "Invalid ADEPT_LICENSE");
|
||||||
|
|
||||||
ByteArray rightsStr;
|
ByteArray rightsStr;
|
||||||
client->inflate(zippedData, rightsStr);
|
client->inflate(zippedData, rightsStr);
|
||||||
|
|
||||||
@@ -1124,7 +1145,19 @@ namespace gourou
|
|||||||
|
|
||||||
std::string encryptedKey = extractTextElem(rightsDoc, "/adept:rights/licenseToken/encryptedKey");
|
std::string encryptedKey = extractTextElem(rightsDoc, "/adept:rights/licenseToken/encryptedKey");
|
||||||
|
|
||||||
decryptADEPTKey(encryptedKey, decryptedKey);
|
if (!encryptionKey)
|
||||||
|
decryptADEPTKey(encryptedKey, decryptedKey);
|
||||||
|
else
|
||||||
|
{
|
||||||
|
GOUROU_LOG(DEBUG, "Use provided encryption key");
|
||||||
|
if (encryptionKeySize != 16)
|
||||||
|
EXCEPTION(DRM_ERR_ENCRYPTION_KEY, "Provided encryption key must be 16 bytes");
|
||||||
|
|
||||||
|
memcpy(&decryptedKey[sizeof(decryptedKey)-16], encryptionKey, encryptionKeySize);
|
||||||
|
}
|
||||||
|
|
||||||
|
ebxId = ebx->objectId();
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1134,28 +1167,29 @@ namespace gourou
|
|||||||
EXCEPTION(DRM_ERR_ENCRYPTION_KEY, "EBX_HANDLER not found");
|
EXCEPTION(DRM_ERR_ENCRYPTION_KEY, "EBX_HANDLER not found");
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<uPDFParser::XRefValue> xrefTable = parser.xrefTable();
|
for(it = objects.begin(); it != objects.end(); it++)
|
||||||
std::vector<uPDFParser::XRefValue>::iterator xrefIt;
|
|
||||||
|
|
||||||
for(xrefIt = xrefTable.begin(); xrefIt != xrefTable.end(); xrefIt++)
|
|
||||||
{
|
{
|
||||||
GOUROU_LOG(DEBUG, "XREF obj " << (*xrefIt).objectId() << " used " << (*xrefIt).used());
|
uPDFParser::Object* object = *it;
|
||||||
|
|
||||||
if (!(*xrefIt).used())
|
if (object->objectId() == ebxId)
|
||||||
continue;
|
|
||||||
|
|
||||||
uPDFParser::Object* object = (*xrefIt).object();
|
|
||||||
|
|
||||||
if (!object)
|
|
||||||
{
|
{
|
||||||
GOUROU_LOG(DEBUG, "No object");
|
// object->deleteKey("Filter");
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Should not decrypt XRef stream
|
||||||
|
if (object->hasKey("Type") && (*object)["Type"]->str() == "/XRef")
|
||||||
|
{
|
||||||
|
GOUROU_LOG(DEBUG, "XRef stream at " << object->offset());
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
GOUROU_LOG(DEBUG, "Obj " << object->objectId());
|
||||||
|
|
||||||
unsigned char tmpKey[16];
|
unsigned char tmpKey[16];
|
||||||
|
|
||||||
generatePDFObjectKey(ebxVersion->value(),
|
generatePDFObjectKey(ebxVersion->value(),
|
||||||
decryptedKey+RSA_KEY_SIZE-16, 16,
|
decryptedKey+sizeof(decryptedKey)-16, 16,
|
||||||
object->objectId(), object->generationNumber(),
|
object->objectId(), object->generationNumber(),
|
||||||
tmpKey);
|
tmpKey);
|
||||||
|
|
||||||
@@ -1197,7 +1231,7 @@ namespace gourou
|
|||||||
dictionary.replace(dictIt->first, dictIt->second);
|
dictionary.replace(dictIt->first, dictIt->second);
|
||||||
|
|
||||||
std::vector<uPDFParser::DataType*>::iterator datasIt;
|
std::vector<uPDFParser::DataType*>::iterator datasIt;
|
||||||
std::vector<uPDFParser::DataType*>& datas = (*xrefIt).object()->data();
|
std::vector<uPDFParser::DataType*>& datas = object->data();
|
||||||
uPDFParser::Stream* stream;
|
uPDFParser::Stream* stream;
|
||||||
|
|
||||||
for (datasIt = datas.begin(); datasIt != datas.end(); datasIt++)
|
for (datasIt = datas.begin(); datasIt != datas.end(); datasIt++)
|
||||||
@@ -1220,6 +1254,8 @@ namespace gourou
|
|||||||
clearData, &dataOutLength);
|
clearData, &dataOutLength);
|
||||||
|
|
||||||
stream->setData(clearData, dataOutLength, true);
|
stream->setData(clearData, dataOutLength, true);
|
||||||
|
if (dataOutLength != dataLength)
|
||||||
|
GOUROU_LOG(DEBUG, "New size " << dataOutLength);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1230,11 +1266,11 @@ namespace gourou
|
|||||||
}
|
}
|
||||||
|
|
||||||
void DRMProcessor::removeDRM(const std::string& filenameIn, const std::string& filenameOut,
|
void DRMProcessor::removeDRM(const std::string& filenameIn, const std::string& filenameOut,
|
||||||
ITEM_TYPE type)
|
ITEM_TYPE type, const unsigned char* encryptionKey, unsigned encryptionKeySize)
|
||||||
{
|
{
|
||||||
if (type == PDF)
|
if (type == PDF)
|
||||||
removePDFDRM(filenameIn, filenameOut);
|
removePDFDRM(filenameIn, filenameOut, encryptionKey, encryptionKeySize);
|
||||||
else
|
else
|
||||||
removeEPubDRM(filenameIn, filenameOut);
|
removeEPubDRM(filenameIn, filenameOut, encryptionKey, encryptionKeySize);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -55,6 +55,23 @@ static const char* defaultDirs[] = {
|
|||||||
"./adobe-digital-editions/",
|
"./adobe-digital-editions/",
|
||||||
"./.adobe-digital-editions/"
|
"./.adobe-digital-editions/"
|
||||||
};
|
};
|
||||||
|
static char* encryptionKeyUser = 0;
|
||||||
|
static unsigned char* encryptionKey = 0;
|
||||||
|
static unsigned encryptionKeySize = 0;
|
||||||
|
|
||||||
|
static inline unsigned char htoi(unsigned char c)
|
||||||
|
{
|
||||||
|
if (c >= '0' && c <= '9')
|
||||||
|
c -= '0';
|
||||||
|
else if (c >= 'a' && c <= 'f')
|
||||||
|
c -= 'a' - 10;
|
||||||
|
else if (c >= 'A' && c <= 'F')
|
||||||
|
c -= 'A' - 10;
|
||||||
|
else
|
||||||
|
EXCEPTION(gourou::USER_INVALID_INPUT, "Invalid character " << c << " in encryption key");
|
||||||
|
|
||||||
|
return c;
|
||||||
|
}
|
||||||
|
|
||||||
static inline bool endsWith(const std::string& s, const std::string& suffix)
|
static inline bool endsWith(const std::string& s, const std::string& suffix)
|
||||||
{
|
{
|
||||||
@@ -110,7 +127,7 @@ public:
|
|||||||
{
|
{
|
||||||
EXCEPTION(gourou::DRM_FILE_ERROR, "Unable to copy " << inputFile << " into " << filename);
|
EXCEPTION(gourou::DRM_FILE_ERROR, "Unable to copy " << inputFile << " into " << filename);
|
||||||
}
|
}
|
||||||
processor.removeDRM(inputFile, filename, type);
|
processor.removeDRM(inputFile, filename, type, encryptionKey, encryptionKeySize);
|
||||||
std::cout << "DRM removed into new file " << filename << std::endl;
|
std::cout << "DRM removed into new file " << filename << std::endl;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -121,7 +138,7 @@ public:
|
|||||||
QTemporaryFile tempFile;
|
QTemporaryFile tempFile;
|
||||||
tempFile.open();
|
tempFile.open();
|
||||||
tempFile.setAutoRemove(false); // In case of failure
|
tempFile.setAutoRemove(false); // In case of failure
|
||||||
processor.removeDRM(inputFile, tempFile.fileName().toStdString(), type);
|
processor.removeDRM(inputFile, tempFile.fileName().toStdString(), type, encryptionKey, encryptionKeySize);
|
||||||
/* Original file must be removed before doing a copy... */
|
/* Original file must be removed before doing a copy... */
|
||||||
QFile origFile(inputFile);
|
QFile origFile(inputFile);
|
||||||
origFile.remove();
|
origFile.remove();
|
||||||
@@ -132,7 +149,7 @@ public:
|
|||||||
tempFile.setAutoRemove(true);
|
tempFile.setAutoRemove(true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
processor.removeDRM(inputFile, filename, type);
|
processor.removeDRM(inputFile, filename, type, encryptionKey, encryptionKeySize);
|
||||||
std::cout << "DRM removed from " << filename << std::endl;
|
std::cout << "DRM removed from " << filename << std::endl;
|
||||||
}
|
}
|
||||||
} catch(std::exception& e)
|
} catch(std::exception& e)
|
||||||
@@ -213,14 +230,14 @@ int main(int argc, char** argv)
|
|||||||
{"output-dir", required_argument, 0, 'O' },
|
{"output-dir", required_argument, 0, 'O' },
|
||||||
{"output-file", required_argument, 0, 'o' },
|
{"output-file", required_argument, 0, 'o' },
|
||||||
{"input-file", required_argument, 0, 'f' },
|
{"input-file", required_argument, 0, 'f' },
|
||||||
{"export-private-key",no_argument, 0, 'e' },
|
{"encryption-key", required_argument, 0, 'K' }, // Private option
|
||||||
{"verbose", no_argument, 0, 'v' },
|
{"verbose", no_argument, 0, 'v' },
|
||||||
{"version", no_argument, 0, 'V' },
|
{"version", no_argument, 0, 'V' },
|
||||||
{"help", no_argument, 0, 'h' },
|
{"help", no_argument, 0, 'h' },
|
||||||
{0, 0, 0, 0 }
|
{0, 0, 0, 0 }
|
||||||
};
|
};
|
||||||
|
|
||||||
c = getopt_long(argc, argv, "d:a:k:O:o:f:evVh",
|
c = getopt_long(argc, argv, "d:a:k:O:o:f:K:vVh",
|
||||||
long_options, &option_index);
|
long_options, &option_index);
|
||||||
if (c == -1)
|
if (c == -1)
|
||||||
break;
|
break;
|
||||||
@@ -244,6 +261,9 @@ int main(int argc, char** argv)
|
|||||||
case 'o':
|
case 'o':
|
||||||
outputFile = optarg;
|
outputFile = optarg;
|
||||||
break;
|
break;
|
||||||
|
case 'K':
|
||||||
|
encryptionKeyUser = optarg;
|
||||||
|
break;
|
||||||
case 'v':
|
case 'v':
|
||||||
verbose++;
|
verbose++;
|
||||||
break;
|
break;
|
||||||
@@ -286,6 +306,32 @@ int main(int argc, char** argv)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (encryptionKeyUser)
|
||||||
|
{
|
||||||
|
int size = std::string(encryptionKeyUser).size();
|
||||||
|
if ((size % 2))
|
||||||
|
{
|
||||||
|
std::cout << "Error : Encryption key must be odd length" << std::endl;
|
||||||
|
goto end;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (encryptionKeyUser[0] == '0' && encryptionKeyUser[1] == 'x')
|
||||||
|
{
|
||||||
|
encryptionKeyUser += 2;
|
||||||
|
size -= 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
encryptionKey = new unsigned char[size/2];
|
||||||
|
|
||||||
|
for(i=0; i<size; i+=2)
|
||||||
|
{
|
||||||
|
encryptionKey[i/2] = htoi(encryptionKeyUser[i]) << 4;
|
||||||
|
encryptionKey[i/2] |= htoi(encryptionKeyUser[i+1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
encryptionKeySize = size/2;
|
||||||
|
}
|
||||||
|
|
||||||
if (hasErrors)
|
if (hasErrors)
|
||||||
goto end;
|
goto end;
|
||||||
|
|
||||||
@@ -300,5 +346,8 @@ end:
|
|||||||
free((void*)*files[i]);
|
free((void*)*files[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (encryptionKey)
|
||||||
|
free(encryptionKey);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -532,7 +532,7 @@ void DRMProcessorClientImpl::inflate(gourou::ByteArray& data, gourou::ByteArray&
|
|||||||
{
|
{
|
||||||
// Real error
|
// Real error
|
||||||
if (ret == Z_BUF_ERROR && infstream.avail_out == (uInt)dataSize)
|
if (ret == Z_BUF_ERROR && infstream.avail_out == (uInt)dataSize)
|
||||||
EXCEPTION(gourou::CLIENT_ZIP_ERROR, "Inflate error, code " << zError(ret) << ", msg " << infstream.msg);
|
break;
|
||||||
|
|
||||||
result.append(buffer, dataSize-infstream.avail_out);
|
result.append(buffer, dataSize-infstream.avail_out);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user