mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 19:57:44 +00:00
LibPDF: Add implementation of the Standard security handler
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).
This commit is contained in:
parent
c98bda8ce6
commit
5b316462b2
9 changed files with 522 additions and 3 deletions
|
@ -3,6 +3,7 @@ set(SOURCES
|
|||
CommonNames.cpp
|
||||
Document.cpp
|
||||
Encoding.cpp
|
||||
Encryption.cpp
|
||||
Filter.cpp
|
||||
Fonts.cpp
|
||||
ObjectDerivatives.cpp
|
||||
|
@ -12,4 +13,4 @@ set(SOURCES
|
|||
)
|
||||
|
||||
serenity_lib(LibPDF pdf)
|
||||
target_link_libraries(LibPDF LibC LibCore LibIPC LibGfx LibTextCodec)
|
||||
target_link_libraries(LibPDF LibC LibCore LibIPC LibGfx LibTextCodec LibCrypto)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue