diff options
author | PJ Fanning <fanningpj@apache.org> | 2024-10-30 14:54:04 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2024-10-30 14:54:04 +0000 |
commit | 0b758a45ba3c00c1b31de3f52e50cbabf92b84a7 (patch) | |
tree | c459864def9a6347712ee34628238df14934b8e7 | |
parent | a43cc4a41abedd6ca34ecf59e5f0d3aff195e9f6 (diff) | |
download | poi-0b758a45ba3c00c1b31de3f52e50cbabf92b84a7.tar.gz poi-0b758a45ba3c00c1b31de3f52e50cbabf92b84a7.zip |
bcprov 1.79
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1921688 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | build.gradle | 2 | ||||
-rw-r--r-- | build.xml | 8 | ||||
-rw-r--r-- | poi-ooxml/src/main/java/org/apache/poi/poifs/crypt/dsig/SignatureInfo.java | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle index 5feb7bbfa6..f725b3b5cc 100644 --- a/build.gradle +++ b/build.gradle @@ -118,7 +118,7 @@ subprojects { apply plugin: 'com.adarshr.test-logger' ext { - bouncyCastleVersion = '1.78.1' + bouncyCastleVersion = '1.79' commonsCodecVersion = '1.17.1' commonsCompressVersion = '1.27.1' commonsIoVersion = '2.17.0' @@ -296,11 +296,11 @@ under the License. <!-- xml signature libs - not part of the distribution --> <dependency prefix="dsig.xmlsec" artifact="org.apache.santuario:xmlsec:3.0.4" usage="ooxml-provided"/> - <dependency prefix="dsig.bouncycastle-prov" artifact="org.bouncycastle:bcprov-jdk18on:1.78.1" usage="ooxml-provided"/> - <dependency prefix="dsig.bouncycastle-pkix" artifact="org.bouncycastle:bcpkix-jdk18on:1.78.1" usage="ooxml-provided"/> - <dependency prefix="dsig.bouncycastle-util" artifact="org.bouncycastle:bcutil-jdk18on:1.78.1" usage="ooxml-provided"/> + <dependency prefix="dsig.bouncycastle-prov" artifact="org.bouncycastle:bcprov-jdk18on:1.79" usage="ooxml-provided"/> + <dependency prefix="dsig.bouncycastle-pkix" artifact="org.bouncycastle:bcpkix-jdk18on:1.79" usage="ooxml-provided"/> + <dependency prefix="dsig.bouncycastle-util" artifact="org.bouncycastle:bcutil-jdk18on:1.79" usage="ooxml-provided"/> <!-- only used for signing the release - not used with the ooxml signatures --> - <dependency prefix="dsig.bouncycastle-bcpg" artifact="org.bouncycastle:bcpg-jdk18on:1.78.1" usage="util"/> + <dependency prefix="dsig.bouncycastle-bcpg" artifact="org.bouncycastle:bcpg-jdk18on:1.79" usage="util"/> <dependency prefix="ooxml.test.stax2" artifact="org.codehaus.woodstox:stax2-api:4.2.1" usage="ooxml-provided"/> <!-- svg/batik/pdf libs - not part of the distribution - move batik to its own directory because of JPMS module-path issues --> diff --git a/poi-ooxml/src/main/java/org/apache/poi/poifs/crypt/dsig/SignatureInfo.java b/poi-ooxml/src/main/java/org/apache/poi/poifs/crypt/dsig/SignatureInfo.java index 3896b98035..0800943a41 100644 --- a/poi-ooxml/src/main/java/org/apache/poi/poifs/crypt/dsig/SignatureInfo.java +++ b/poi-ooxml/src/main/java/org/apache/poi/poifs/crypt/dsig/SignatureInfo.java @@ -154,7 +154,7 @@ import org.w3c.dom.events.MutationEvent; * <p>To use SignatureInfo and its sibling classes, you'll need to have the following libs * in the classpath:</p> * <ul> - * <li>BouncyCastle bcpkix and bcprov (tested against 1.78.1)</li> + * <li>BouncyCastle bcpkix and bcprov (tested against 1.79)</li> * <li>Apache Santuario "xmlsec" (tested against 3.0.x)</li> * <li>and log4j-api (tested against 2.22.x)</li> * </ul> |