-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[question] pdftopdf preserves encryption? #146
Comments
The pdftopdf filter does not use any PDF interpreter, it does only manipulations on the PDF file, as re-ordering pages, removing, multiplying pages, scaling, rotating, ... No page is rendered or converted to another file format or internal structure (for example vector text/graphics to raster image). Probably due to thsi encrypted elements are not decrypted but passed on encryoted. |
Our crypto people is trying to get rid of weaker hashes/ciphers and they are not happy when pdftopdf filter 'creates' (in matter of speaking, because it is only data which are sent to next filter and no new file is not created) new weakly encrypted (with usage of MD5 and RC4) file based on old weak encrypted file. According to them it would be better to just decrypt the file. |
Thank you very much, I have merged it now. |
Thank you for merging it, Till! |
Hi,
I was looking into pdftopdf filter code, seeing how it works and find out that pdftopdf filter produces encrypted files if input file is encrypted.
Is it based on a specification of filtering? Or is it just for convenience? Would it be possible that I create the patch which disables the encryption in pdftopdf filter and could be added into project?
The text was updated successfully, but these errors were encountered: