]> source.dussan.org Git - poi.git/commit
Patch for Bug/Enhancement 55818 - add encryption support
authorkiwiwings <kiwiwings@unknown>
Tue, 24 Dec 2013 23:13:21 +0000 (23:13 +0000)
committerkiwiwings <kiwiwings@unknown>
Tue, 24 Dec 2013 23:13:21 +0000 (23:13 +0000)
commitad9cecae59b984606129bbc0f4b73129ab5c614d
tree774037c34920f4fe4f1825f90c5544bb2bc390cf
parentff79d737251156a32539510e69f72018af41846e
Patch for Bug/Enhancement 55818 - add encryption support

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1553336 13f79535-47bb-0310-9956-ffa450edef68
48 files changed:
.classpath
build.xml
src/java/org/apache/poi/EncryptedDocumentException.java
src/java/org/apache/poi/poifs/crypt/AgileDecryptor.java [deleted file]
src/java/org/apache/poi/poifs/crypt/ChainingMode.java [new file with mode: 0644]
src/java/org/apache/poi/poifs/crypt/CipherAlgorithm.java [new file with mode: 0644]
src/java/org/apache/poi/poifs/crypt/CipherProvider.java [new file with mode: 0644]
src/java/org/apache/poi/poifs/crypt/CryptoFunctions.java [new file with mode: 0644]
src/java/org/apache/poi/poifs/crypt/DataSpaceMapUtils.java [new file with mode: 0644]
src/java/org/apache/poi/poifs/crypt/Decryptor.java
src/java/org/apache/poi/poifs/crypt/EcmaDecryptor.java [deleted file]
src/java/org/apache/poi/poifs/crypt/EncryptionHeader.java
src/java/org/apache/poi/poifs/crypt/EncryptionInfo.java
src/java/org/apache/poi/poifs/crypt/EncryptionInfoBuilder.java [new file with mode: 0644]
src/java/org/apache/poi/poifs/crypt/EncryptionMode.java [new file with mode: 0644]
src/java/org/apache/poi/poifs/crypt/EncryptionVerifier.java
src/java/org/apache/poi/poifs/crypt/Encryptor.java [new file with mode: 0644]
src/java/org/apache/poi/poifs/crypt/HashAlgorithm.java [new file with mode: 0644]
src/java/org/apache/poi/poifs/crypt/package.html [new file with mode: 0644]
src/java/org/apache/poi/poifs/crypt/standard/EncryptionRecord.java [new file with mode: 0644]
src/java/org/apache/poi/poifs/crypt/standard/StandardDecryptor.java [new file with mode: 0644]
src/java/org/apache/poi/poifs/crypt/standard/StandardEncryptionHeader.java [new file with mode: 0644]
src/java/org/apache/poi/poifs/crypt/standard/StandardEncryptionInfoBuilder.java [new file with mode: 0644]
src/java/org/apache/poi/poifs/crypt/standard/StandardEncryptionVerifier.java [new file with mode: 0644]
src/java/org/apache/poi/poifs/crypt/standard/StandardEncryptor.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/POIXMLException.java
src/ooxml/java/org/apache/poi/poifs/crypt/agile/AgileDecryptor.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/poifs/crypt/agile/AgileEncryptionHeader.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/poifs/crypt/agile/AgileEncryptionInfoBuilder.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/poifs/crypt/agile/AgileEncryptionVerifier.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/poifs/crypt/agile/AgileEncryptor.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/util/OOXMLLite.java
src/ooxml/resources/org/apache/poi/poifs/crypt/encryptionCertificate.xsd [new file with mode: 0644]
src/ooxml/resources/org/apache/poi/poifs/crypt/encryptionCertificate.xsdconfig [new file with mode: 0644]
src/ooxml/resources/org/apache/poi/poifs/crypt/encryptionInfo.xsd [new file with mode: 0644]
src/ooxml/resources/org/apache/poi/poifs/crypt/encryptionInfo.xsdconfig [new file with mode: 0644]
src/ooxml/resources/org/apache/poi/poifs/crypt/encryptionPassword.xsd [new file with mode: 0644]
src/ooxml/resources/org/apache/poi/poifs/crypt/encryptionPassword.xsdconfig [new file with mode: 0644]
src/ooxml/testcases/org/apache/poi/poifs/crypt/AllPOIFSCryptoTests.java [new file with mode: 0644]
src/ooxml/testcases/org/apache/poi/poifs/crypt/TestAgileEncryptionParameters.java [new file with mode: 0644]
src/ooxml/testcases/org/apache/poi/poifs/crypt/TestCertificateEncryption.java [new file with mode: 0644]
src/ooxml/testcases/org/apache/poi/poifs/crypt/TestDecryptor.java [new file with mode: 0644]
src/ooxml/testcases/org/apache/poi/poifs/crypt/TestEncryptionInfo.java [new file with mode: 0644]
src/ooxml/testcases/org/apache/poi/poifs/crypt/TestEncryptor.java [new file with mode: 0644]
src/ooxml/testcases/org/apache/poi/xwpf/TestXWPFBugs.java
src/testcases/org/apache/poi/poifs/crypt/AllPOIFSCryptoTests.java [deleted file]
src/testcases/org/apache/poi/poifs/crypt/TestDecryptor.java [deleted file]
src/testcases/org/apache/poi/poifs/crypt/TestEncryptionInfo.java [deleted file]