2021-07-06 22:16:26 +02:00
Introduction
------------
2021-08-26 08:15:18 +02:00
libgourou is a free implementation of Adobe's ADEPT protocol used to add DRM on ePub/PDF files. It overcome the lacks of Adobe support for Linux platforms.
2021-07-06 22:16:26 +02:00
Dependencies
------------
For libgourou :
* None
For utils :
* QT5Core
* QT5Network
* OpenSSL
* libzip
Utils
-----
2021-08-26 08:15:18 +02:00
You can import configuration from your eReader or create a new one with utils/activate :
2021-07-06 22:16:26 +02:00
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD
2021-11-03 13:54:44 +01:00
./activate -u < AdobeID USERNAME >
2021-07-06 22:16:26 +02:00
Then a _./.adept_ directory is created with all configuration file
2021-08-26 08:15:18 +02:00
To download an ePub/PDF :
2021-07-06 22:16:26 +02:00
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD
2021-11-03 13:54:44 +01:00
./acsmdownloader -f < ACSM_FILE >
2021-07-06 22:16:26 +02:00
2021-08-26 08:15:18 +02:00
To export your private key :
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD
2021-11-03 13:54:44 +01:00
./acsmdownloader --export-private-key [-o adobekey_1.der]
2021-07-06 22:16:26 +02:00
2021-12-18 17:42:23 +01:00
To remove ADEPT DRM :
2021-07-06 22:16:26 +02:00
2021-12-18 17:42:23 +01:00
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD
./adept_remove -f < encryptedFile >
2021-07-06 22:16:26 +02:00
Copyright
---------
Grégory Soutadé
License
-------
libgourou : LGPL v3 or later
utils : BSD
2021-07-12 21:26:53 +02:00
Special thanks
--------------
* _Jens_ for all test samples and utils testing