Movatterモバイル変換


[0]ホーム

URL:


 

Apache XML Graphics Project Logo

Apache™ FOP

This document is for an old version of FOP that is no longer supported.Latest version of this page
The Apache FOP Project

The Apache™ FOP Project

Apache™ FOP: PDF encryption.

Overview

Apache™ FOP supports encryption of PDF output, thanks to Patrick C. Lankswert and others. This feature is commonly used to prevent unauthorized viewing, printing, editing, copying text from the document and doing annotations. It is also possible to ask the user for a password in order to view the contents. Note that there already exist third party applications which can decrypt an encrypted PDF without effort and allow the aforementioned operations, therefore the degree of protection is limited.

For further information about features and restrictions regarding PDF encryption, look at the documentation coming with Adobe Acrobat or the technical documentation on the Adobe web site.

Usage (fop.xconf)

<renderermime="application/pdf"><encryption-params><user-password>testuserpass</user-password><owner-password>testownerpass</owner-password><noprint/><nocopy/><noedit/><noannotations/><encryption-length>128</encryption-length><encrypt-metadata>false</encrypt-metadata></encryption-params></renderer>

Usage (command line)

Encryption is enabled by supplying any of the encryption related options.

An owner password is set with the-o option. This password is actually used as encryption key. Many tools for PDF processing ask for this password to disregard any restriction imposed on the PDF document.

If no owner password has been supplied but FOP was asked to apply some restrictions, a random password is used. In this case it is obviously impossiible to disregard restrictions in PDF processing tools.

A user password, supplied with the-u option, will cause the PDF display software to ask the reader for this password in order to view the contents of the document. If no user password was supplied, viewing the content is not restricted.

Further restrictions can be imposed by using the following command-line options:

OptionDescription
-noprintdisable printing
-nocopydisable copy/paste of content
-noeditdisable editing in Adobe Acrobat
-noannotationsdisable editing of annotations
-nofillinformsdisable filling in forms
-noaccesscontentdisable text and graphics extraction for accessibility purposes
-noassembledocdisable assembling documents
-noprinthqdisable high quality printing

Usage (embedded)

When FOP is embedded in another Java application you need to set an options map on the renderer. These are the supported options:

OptionDescriptionValuesDefault
encryption-lengthThe encryption length in bitAny multiple of 8 between 40 and 128, or 256128
ownerPasswordThe owner passwordString
userPasswordThe user passwordString
allowPrintAllows/disallows printing of the PDF"TRUE" or "FALSE""TRUE"
allowCopyContentAllows/disallows copy/paste of content"TRUE" or "FALSE""TRUE"
allowEditContentAllows/disallows editing in Adobe Acrobat"TRUE" or "FALSE""TRUE"
allowEditAnnotationsAllows/disallows editing of annotations"TRUE" or "FALSE""TRUE"
allowFillInFormsAllows/disallows filling in forms"TRUE" or "FALSE""TRUE"
allowAccessContentAllows/disallows text and graphics extraction for accessibility purposes"TRUE" or "FALSE""TRUE"
allowAssembleDocumentAllows/disallows assembling document"TRUE" or "FALSE""TRUE"
allowPrintHqAllows/disallows high quality printing"TRUE" or "FALSE""TRUE"
encrypt-metadataWhether to encrypt the Metadata stream"TRUE" or "FALSE""TRUE"

Encryption is enabled as soon as one of these options is set.

An example to enable PDF encryption in Java code:

importorg.apache.fop.pdf.PDFEncryptionParams;[..]FOUserAgentuserAgent=fopFactory.newFOUserAgent();userAgent.getRendererOptions().put("encryption-params",newPDFEncryptionParams(null,"password",false,false,true,true,true));Fopfop=fopFactory.newFop(MimeConstants.MIME_PDF,userAgent);[..]

The parameters for the constructor of PDFEncryptionParams are:

  1. userPassword: String, may be null

  2. ownerPassword: String, may be null

  3. allowPrint: true if printing is allowed

  4. allowCopyContent: true if copying content is allowed

  5. allowEditContent: true if editing content is allowed

  6. allowEditAnnotations: true if editing annotations is allowed

  7. allowFillInForms: true if filling in forms is allowed.

  8. allowAccessContent: true if extracting text and graphics is allowed

  9. allowAssembleDocument: true if assembling document is allowed

  10. allowPrintHq: true if printing to high quality is allowed

  11. encryptMetadata: true if the Metadata stream should be encrypted

Alternatively, you can set each value separately in the Map provided by FOUserAgent.getRendererOptions() by using the following keys:

  1. user-password: String

  2. owner-password: String

  3. noprint: Boolean or "true"/"false"

  4. nocopy: Boolean or "true"/"false"

  5. noedit: Boolean or "true"/"false"

  6. noannotations: Boolean or "true"/"false"

  7. nofillinforms: Boolean or "true"/"false"

  8. noaccesscontent: Boolean or "true"/"false"

  9. noassembledoc: Boolean or "true"/"false"

  10. noprinthq: Boolean or "true"/"false"

  11. encrypt-metadata: Boolean or "true"/"false"

The password length is restricted to a maximum of 32 bytes if the encryption-length is 128 or less, and to a maximum of 127 bytes if the encryption-length is 256 (longer passwords will be truncated to the maximum allowed).

Environment

The PDF encryption implemented in FOP does not need external libraries to perform encryption. A recent JDK (1.5+) is sufficient. However, encryption using keys with 256 bits requires the installation of the JCE Unlimited Strength Jurisdiction Policy files from Oracle.

Apache Software Foundation

Copyright © 2025 The Apache Software Foundation, Licensed undertheApache License, Version 2.0.
Apache, Apache XML Graphics, Apache FOP, Apache Batik, the Apache logo, and theApache XML Graphics logos are trademarks ofThe ApacheSoftware Foundation. All other marks mentioned may be trademarks or registeredtrademarks of their respective owners.


[8]ページ先頭

©2009-2026 Movatter.jp