Class StandardDecryptionMaterial


  • public class StandardDecryptionMaterial
    extends DecryptionMaterial
    Represents the necessary information to decrypt a document protected by the standard security handler (password protection). This is only composed of a password.
    Author:
    Benoit Guillon
    • Constructor Summary

      Constructors 
      Constructor Description
      StandardDecryptionMaterial​(java.lang.String pwd)
      Create a new standard decryption material with the given password.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getPassword()
      Returns the password.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • StandardDecryptionMaterial

        public StandardDecryptionMaterial​(java.lang.String pwd)
        Create a new standard decryption material with the given password.
        Parameters:
        pwd - The password.
    • Method Detail

      • getPassword

        public java.lang.String getPassword()
        Returns the password.
        Returns:
        The password used to decrypt the document.