aboutsummaryrefslogtreecommitdiffstats
path: root/poi-ooxml
diff options
context:
space:
mode:
authorPJ Fanning <fanningpj@apache.org>2023-02-10 20:34:01 +0000
committerPJ Fanning <fanningpj@apache.org>2023-02-10 20:34:01 +0000
commit46a1548f8321379f107ae0cede92ec98308df4e2 (patch)
treecdd4ff5413aed6498e561dd5ee75d86d2e0531ce /poi-ooxml
parentc2d2ec0eaf9b994820810a9b561ab7a5b49557c5 (diff)
downloadpoi-46a1548f8321379f107ae0cede92ec98308df4e2.tar.gz
poi-46a1548f8321379f107ae0cede92ec98308df4e2.zip
upgrade bouncycastle
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1907568 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-ooxml')
-rw-r--r--poi-ooxml/build.gradle8
-rw-r--r--poi-ooxml/src/main/java/org/apache/poi/poifs/crypt/dsig/SignatureInfo.java6
2 files changed, 7 insertions, 7 deletions
diff --git a/poi-ooxml/build.gradle b/poi-ooxml/build.gradle
index 75808796ef..d03752bdb8 100644
--- a/poi-ooxml/build.gradle
+++ b/poi-ooxml/build.gradle
@@ -67,12 +67,12 @@ dependencies {
api 'org.apache.commons:commons-collections4:4.4'
signingImplementation 'org.apache.santuario:xmlsec:3.0.1'
- signingImplementation "org.bouncycastle:bcpkix-jdk15on:${bouncyCastleVersion}"
- signingImplementation "org.bouncycastle:bcutil-jdk15on:${bouncyCastleVersion}"
+ signingImplementation "org.bouncycastle:bcpkix-jdk18on:${bouncyCastleVersion}"
+ signingImplementation "org.bouncycastle:bcutil-jdk18on:${bouncyCastleVersion}"
rendersignImplementation 'org.apache.santuario:xmlsec:3.0.1'
- rendersignImplementation "org.bouncycastle:bcpkix-jdk15on:${bouncyCastleVersion}"
- rendersignImplementation "org.bouncycastle:bcutil-jdk15on:${bouncyCastleVersion}"
+ rendersignImplementation "org.bouncycastle:bcpkix-jdk18on:${bouncyCastleVersion}"
+ rendersignImplementation "org.bouncycastle:bcutil-jdk18on:${bouncyCastleVersion}"
renderImplementation "org.apache.pdfbox:pdfbox:${pdfboxVersion}"
renderImplementation "de.rototor.pdfbox:graphics2d:${graphics2dVersion}"
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 3c300d7e8d..782f72b4f3 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
@@ -153,9 +153,9 @@ 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.70)</li>
- * <li>Apache Santuario "xmlsec" (tested against 2.3.0)</li>
- * <li>and log4j-api (tested against 2.17.x)</li>
+ * <li>BouncyCastle bcpkix and bcprov (tested against 1.72)</li>
+ * <li>Apache Santuario "xmlsec" (tested against 3.0.1)</li>
+ * <li>and log4j-api (tested against 2.19.x)</li>
* </ul>
*/
public class SignatureInfo {