]> source.dussan.org Git - poi.git/commit
Added implementation of Digital Signature support using code initially developed...
authorUgo Cei <ugo@apache.org>
Tue, 13 Oct 2009 16:31:28 +0000 (16:31 +0000)
committerUgo Cei <ugo@apache.org>
Tue, 13 Oct 2009 16:31:28 +0000 (16:31 +0000)
commit5378df317e4b15401832bde9eddfff8352a0092e
tree53bd3722c83ad878f2c4d68ac71c371c13ffa399
parent78e643fe2184d931b08120ee5f29e2b2e9daf3c1
Added implementation of Digital Signature support using code initially developed for the eId Applet project <http://code.google.com/p/eid-applet/> and re-released under Apache License.

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@824836 13f79535-47bb-0310-9956-ffa450edef68
39 files changed:
build.xml
legal/NOTICE
src/ooxml/java/org/apache/poi/ooxml/signature/service/signer/AbstractXmlSignatureService.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/ooxml/signature/service/signer/KeyInfoKeySelector.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/ooxml/signature/service/signer/NoCloseInputStream.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/ooxml/signature/service/signer/NoCloseOutputStream.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/ooxml/signature/service/signer/SignatureAspect.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/ooxml/signature/service/signer/TemporaryDataStorage.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/ooxml/signature/service/signer/ooxml/AbstractOOXMLSignatureService.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/ooxml/signature/service/signer/ooxml/OOXMLProvider.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/ooxml/signature/service/signer/ooxml/OOXMLSignatureAspect.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/ooxml/signature/service/signer/ooxml/OOXMLSignatureVerifier.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/ooxml/signature/service/signer/ooxml/OOXMLURIDereferencer.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/ooxml/signature/service/signer/ooxml/RelationshipComparator.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/ooxml/signature/service/signer/ooxml/RelationshipTransformParameterSpec.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/ooxml/signature/service/signer/ooxml/RelationshipTransformService.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/ooxml/signature/service/signer/ooxml/package-info.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/ooxml/signature/service/signer/package-info.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/ooxml/signature/service/spi/AuthenticationService.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/ooxml/signature/service/spi/DigestInfo.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/ooxml/signature/service/spi/InsecureClientEnvironmentException.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/ooxml/signature/service/spi/SecureClientEnvironmentService.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/ooxml/signature/service/spi/SignatureService.java [new file with mode: 0644]
src/ooxml/java/org/apache/poi/ooxml/signature/service/spi/package-info.java [new file with mode: 0644]
src/ooxml/testcases/hello-world-office-2010-technical-preview-unsigned.docx [new file with mode: 0644]
src/ooxml/testcases/hello-world-office-2010-technical-preview.docx [new file with mode: 0644]
src/ooxml/testcases/hello-world-signed-twice.docx [new file with mode: 0644]
src/ooxml/testcases/hello-world-signed.docx [new file with mode: 0644]
src/ooxml/testcases/hello-world-signed.pptx [new file with mode: 0644]
src/ooxml/testcases/hello-world-signed.xlsx [new file with mode: 0644]
src/ooxml/testcases/hello-world-unsigned.docx [new file with mode: 0644]
src/ooxml/testcases/hello-world-unsigned.pptx [new file with mode: 0644]
src/ooxml/testcases/hello-world-unsigned.xlsx [new file with mode: 0644]
src/ooxml/testcases/invalidsig.docx [new file with mode: 0644]
src/ooxml/testcases/org/apache/poi/ooxml/signature/service/signer/PkiTestUtils.java [new file with mode: 0644]
src/ooxml/testcases/org/apache/poi/ooxml/signature/service/signer/TemporaryTestDataStorage.java [new file with mode: 0644]
src/ooxml/testcases/org/apache/poi/ooxml/signature/service/signer/TestAbstractOOXMLSignatureService.java [new file with mode: 0644]
src/ooxml/testcases/org/apache/poi/ooxml/signature/service/signer/TestAbstractXmlSignatureService.java [new file with mode: 0644]
src/ooxml/testcases/org/apache/poi/ooxml/signature/service/signer/TestOOXMLSignatureVerifier.java [new file with mode: 0644]