From 25c0c129be45ac1bc6575df36121f29f64b325f2 Mon Sep 17 00:00:00 2001 From: Maxim Valyanskiy Date: Tue, 10 May 2011 10:40:39 +0000 Subject: [PATCH] update documentation on encryption support git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1101398 13f79535-47bb-0310-9956-ffa450edef68 --- src/documentation/content/xdocs/encryption.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/documentation/content/xdocs/encryption.xml b/src/documentation/content/xdocs/encryption.xml index 61a2a200dd..7354431fba 100644 --- a/src/documentation/content/xdocs/encryption.xml +++ b/src/documentation/content/xdocs/encryption.xml @@ -33,7 +33,7 @@

Apache POI contains support for reading few variants of encrypted office files:

Some "write-protected" files are encrypted with build-in password, POI can read that files too.

@@ -52,7 +52,7 @@ EncryptionInfo info = new EncryptionInfo(filesystem); -Decryptor d = new Decryptor(info); +Decryptor d = Decryptor.getInstance(info); try { if (!d.verifyPassword(password)) { -- 2.39.5