libgourou/README_package.md

73 lines
1.1 KiB
Markdown
Raw Normal View History

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-08-26 08:15:18 +02:00
./utils/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-08-26 08:15:18 +02:00
./utils/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
./utils/acsmdownloader --export-private-key [-o adobekey_1.der]
2021-07-06 22:16:26 +02:00
Sources
-------
http://indefero.soutade.fr/p/libgourou
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
2021-08-26 08:15:18 +02:00