mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 18:47:41 +00:00

Security handlers manage encryption and decription of PDF files. The standard security handler uses RC4/MD5 to perform its crypto (AES as well, but that is not yet implemented).
16 lines
317 B
CMake
16 lines
317 B
CMake
set(SOURCES
|
|
ColorSpace.cpp
|
|
CommonNames.cpp
|
|
Document.cpp
|
|
Encoding.cpp
|
|
Encryption.cpp
|
|
Filter.cpp
|
|
Fonts.cpp
|
|
ObjectDerivatives.cpp
|
|
Parser.cpp
|
|
Renderer.cpp
|
|
Value.cpp
|
|
)
|
|
|
|
serenity_lib(LibPDF pdf)
|
|
target_link_libraries(LibPDF LibC LibCore LibIPC LibGfx LibTextCodec LibCrypto)
|