org.pdfbox.pdmodel.encryption
Class StandardDecryptionMaterial
public class StandardDecryptionMaterial
Represents the necessary information to decrypt a document protected by
the standard security handler (password protection).
This is only composed of a password.
The following example shows how to decrypt a document protected with
the standard security handler:
PDDocument doc = PDDocument.load(in);
StandardDecryptionMaterial dm = new StandardDecryptionMaterial("password");
doc.openProtection(dm);
- Benoit Guillon (benoit.guillon@snv.jussieu.fr)
StandardDecryptionMaterial
public StandardDecryptionMaterial(String pwd)
Create a new standard decryption material with the given password.
getPassword
public String getPassword()
Returns the password.
- The password used to decrypt the document.