You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by ad...@apache.org on 2010/11/22 23:13:34 UTC

svn commit: r1037914 - /pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/encryption/SecurityHandler.java

Author: adam
Date: Mon Nov 22 22:13:34 2010
New Revision: 1037914

URL: http://svn.apache.org/viewvc?rev=1037914&view=rev
Log:
PDFBOX-872: ERROR org.apache.pdfbox.filter.FlateFilter - Stop reading corrupt stream
Fixed type-o

Modified:
    pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/encryption/SecurityHandler.java

Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/encryption/SecurityHandler.java
URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/encryption/SecurityHandler.java?rev=1037914&r1=1037913&r2=1037914&view=diff
==============================================================================
--- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/encryption/SecurityHandler.java (original)
+++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/encryption/SecurityHandler.java Mon Nov 22 22:13:34 2010
@@ -196,7 +196,7 @@ public abstract class SecurityHandler
      * @param output The output to write the encrypted data to.
      * @throws CryptographyException If there is an error during the encryption.
      * @throws IOException If there is an error reading the data.
-     * @depricated While this works fine for RC4 encryption, it will never decrypt AES data
+     * @deprecated While this works fine for RC4 encryption, it will never decrypt AES data
      *             You should use encryptData(objectNumber, genNumber, data, output, decrypt)
      *             which can do everything.  This function is just here for compatibility
      *             reasons and will be removed in the future.