4

嗨,我正在寻找一个 python 库,它允许我在一些现有的 pdf 上设置受密码保护的打印、复制、粘贴选项

我查看了 reportlab pdfencrypt 模块:这正是我需要的选项,但开源版本受到严格限制 - 甚至不能设置真正的密码,并且许可证不是一个选项(超过 1000 英镑/年) - 这将是数量相对较少(每年处理< 1000 份文档),客户是非营利组织

任何建议都非常感谢!

4

4 回答 4

3

Laaate 回答,但我想开始贡献...

在 pdf.py 文件中,在 encypt() 方法中,更改标志:

    # permit everything:
    P = -1

到:

    # prevent everything:
    P = -3904

这将阻止除简单查看之外的所有功能。请务必传递不同的所有者密码。

于 2016-03-15T15:47:53.273 回答
3

你(就像我一样)一定想过 - WTF"-3904"来自凯文的回答

请让自己舒服——我有答案)。

我在 PDF 1.6 参考中找到了它。你可以在这里得到它:https ://www.adobe.com/content/dam/acom/en/devnet/pdf/pdf_reference_archive/PDFReference16.pdf

3.5节,第99页:

包含一组标志的 32 位整数,指定在以用户访问权限打开文档时应授予哪些访问权限。表 3.20 显示了这些标志的含义。标志字中的位位置从 1(低位)到 32(高位)编号。任何位置的 1 位启用相应的访问权限。哪些位是有意义的,在某些情况下如何解释它们,取决于安全处理程序的修订号(在加密字典的 R 条目中指定)。

*注意:PDF 整数对象在内部以带符号的二进制补码形式表示。由于加密字典的 P 值中所有保留的高位标志位都必须为 1,因此该值必须指定为负整数。例如,假设安全处理程序的修订版 2,值 -44 允许打印和复制,但不允许修改内容和注释。

所以,P是许可!请检查该文档中的表格。-4411010100位表示。

我做了这样的(允许打印和复制,但不允许修改内容和注释):

from hashlib import md5

from PyPDF4 import PdfFileReader, PdfFileWriter
from PyPDF4.generic import NameObject, DictionaryObject, ArrayObject, \
    NumberObject, ByteStringObject
from PyPDF4.pdf import _alg33, _alg34, _alg35
from PyPDF4.utils import b_


def encrypt(writer_obj: PdfFileWriter, user_pwd, owner_pwd=None, use_128bit=True):
    """
    Encrypt this PDF file with the PDF Standard encryption handler.

    :param str user_pwd: The "user password", which allows for opening
        and reading the PDF file with the restrictions provided.
    :param str owner_pwd: The "owner password", which allows for
        opening the PDF files without any restrictions.  By default,
        the owner password is the same as the user password.
    :param bool use_128bit: flag as to whether to use 128bit
        encryption.  When false, 40bit encryption will be used.  By default,
        this flag is on.
    """
    import time, random
    if owner_pwd == None:
        owner_pwd = user_pwd
    if use_128bit:
        V = 2
        rev = 3
        keylen = int(128 / 8)
    else:
        V = 1
        rev = 2
        keylen = int(40 / 8)
    # permit copy and printing only:
    P = -44
    O = ByteStringObject(_alg33(owner_pwd, user_pwd, rev, keylen))
    ID_1 = ByteStringObject(md5(b_(repr(time.time()))).digest())
    ID_2 = ByteStringObject(md5(b_(repr(random.random()))).digest())
    writer_obj._ID = ArrayObject((ID_1, ID_2))
    if rev == 2:
        U, key = _alg34(user_pwd, O, P, ID_1)
    else:
        assert rev == 3
        U, key = _alg35(user_pwd, rev, keylen, O, P, ID_1, False)
    encrypt = DictionaryObject()
    encrypt[NameObject("/Filter")] = NameObject("/Standard")
    encrypt[NameObject("/V")] = NumberObject(V)
    if V == 2:
        encrypt[NameObject("/Length")] = NumberObject(keylen * 8)
    encrypt[NameObject("/R")] = NumberObject(rev)
    encrypt[NameObject("/O")] = ByteStringObject(O)
    encrypt[NameObject("/U")] = ByteStringObject(U)
    encrypt[NameObject("/P")] = NumberObject(P)
    writer_obj._encrypt = writer_obj._addObject(encrypt)
    writer_obj._encrypt_key = key


unmeta = PdfFileReader('my_pdf.pdf')

writer = PdfFileWriter()
writer.appendPagesFromReader(unmeta)
encrypt(writer, '1', '123')

with open('my_pdf_encrypted.pdf', 'wb') as fp:
    writer.write(fp)

如果您喜欢我的回答,请投票;)。

于 2020-07-24T16:41:02.133 回答
1

PyPDF允许加密PDF 文件。

于 2012-10-28T14:57:26.797 回答
1

您是否尝试过 PDF 工具包,命令行界面 ( pdftk)?

http://www.pdflabs.com/docs/pdftk-cli-examples/

于 2012-10-28T14:59:29.777 回答