権限パスワードでの PDF の暗号化

PDF ドキュメントをコピー、編集、または印刷するには、権限パスワード(所有者パスワードまたはメインパスワードとも呼ばれる)が必要です。DocAssuranceService API を使用して、プログラムによって PDF に権限パスワードを適用する方法について説明します。

次の JSP コードは、権限パスワードを使用して PDF を暗号化します。

<%--
     Encrypt PDF with permissions password
--%>
    <%@include file="/libs/foundation/global.jsp"%>
<%@ page import="com.adobe.fd.docassurance.client.api.EncryptionOptions,java.util.*,java.io.*,com.adobe.fd.encryption.client.*" %>
    <%@page session="false" %>
<%
    String filePath = request.getParameter("saveLocation");
    InputStream pdfIS = null;
    com.adobe.aemfd.docmanager.Document generatedDocument = null;
    // get the pdf file
    javax.servlet.http.Part pdfPart = request.getPart("pdfFile");
    pdfIS = pdfPart.getInputStream();
    com.adobe.aemfd.docmanager.Document pdfDocument = new com.adobe.aemfd.docmanager.Document(pdfIS);


// encrypt the document with permssions password. You can only print this document
    PasswordEncryptionOptionSpec poSpec = new PasswordEncryptionOptionSpec();
    poSpec.setCompatability(PasswordEncryptionCompatability.ACRO_X);
    poSpec.setEncryptOption(PasswordEncryptionOption.ALL);
    List<PasswordEncryptionPermission> permissionList = new ArrayList<PasswordEncryptionPermission>();
    permissionList.add(PasswordEncryptionPermission.PASSWORD_PRINT_LOW);
    //hardcoding passwords into code is for demonstration purposes only.In real life scenarios the password is sourced from a secure location
    poSpec.setPermissionPassword("adobe");
    poSpec.setPermissionsRequested(permissionList);
    EncryptionOptions encryptionOptions = EncryptionOptions.getInstance();
    encryptionOptions.setEncryptionType(com.adobe.fd.docassurance.client.api.DocAssuranceServiceOperationTypes.ENCRYPT_WITH_PASSWORD);
    encryptionOptions.setPasswordEncryptionOptionSpec(poSpec);
    com.adobe.fd.docassurance.client.api.DocAssuranceService docAssuranceService = sling.getService(com.adobe.fd.docassurance.client.api.DocAssuranceService.class);
    com.adobe.aemfd.docmanager.Document securedDocument = docAssuranceService.secureDocument(pdfDocument,encryptionOptions,null,null,null);
    securedDocument.copyToFile(new java.io.File(filePath));
    out.println("Document encrypted and saved to " +filePath);
%>

システム上のサンプルパッケージをテストするには:

AEM パッケージマネージャーを使用して、パッケージをダウンロードしてインストールします。

パッケージをインストールした後、次の URL を Adobe Granite CSRF フィルターの OSGi 設定許可リストに追加します。

  1. configMgr にログインします
  2. Adobe Granite CSRF フィルターを検索します。
  3. 除外されたセクションに次のパスを追加して、保存します。
  4. /content/AemFormsSamples/encrypt

サンプルのテスト

サンプルコードをテストするには、様々な方法があります。Postman アプリを使用するのが最もすばやく簡単です。Postman を使用すると、サーバーに POST リクエストを送信できます。次のスクリーンショットに、POST リクエストを機能させるのに必要なリクエストパラメーターを示します。リクエストを送信する前に、適切な認証タイプを指定していることを確認してください。

encrypt-pdf-postman

recommendation-more-help
8de24117-1378-413c-a581-01e660b7163e