1 49 50 package com.lowagie.text.pdf.interfaces; 51 52 import java.security.cert.Certificate ; 53 54 import com.lowagie.text.DocumentException; 55 56 64 65 public interface PdfEncryptionSettings { 66 67 68 82 public void setEncryption(byte userPassword[], byte ownerPassword[], int permissions, int encryptionType) throws DocumentException; 83 84 97 public void setEncryption(Certificate [] certs, int[] permissions, int encryptionType) throws DocumentException; 98 } | Popular Tags |