Skip to content

Commit 48bec0e

Browse files
committed
Update JAR Dependencies - May 2025
1 parent e5a42e4 commit 48bec0e

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
apacheCommonsCsvVersion=1.14.0
22

3-
aspectjVersion=1.9.23
3+
aspectjVersion=1.9.24
44

55
assertjVersion=3.27.3
66

77
awaitilityVersion=4.3.0
88

99
lookfirstSardineVersion=5.13
1010

11-
jettyVersion=12.0.18
11+
jettyVersion=12.0.21
1212

13-
seleniumVersion=4.27.0
13+
seleniumVersion=4.33.0
1414

1515
mockserverNettyVersion=5.15.0
1616

src/org/labkey/test/TestFileUtils.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
import org.bouncycastle.openpgp.PGPPBEEncryptedData;
3838
import org.bouncycastle.openpgp.PGPUtil;
3939
import org.bouncycastle.openpgp.jcajce.JcaPGPObjectFactory;
40-
import org.bouncycastle.openpgp.operator.jcajce.JcaPGPDigestCalculatorProviderBuilder;
4140
import org.bouncycastle.openpgp.operator.jcajce.JcePBEDataDecryptorFactoryBuilder;
4241
import org.bouncycastle.util.io.Streams;
4342
import org.jetbrains.annotations.NotNull;
@@ -653,7 +652,7 @@ public static byte[] decrypt(byte[] encrypted, char[] passPhrase) throws IOExcep
653652
}
654653

655654
PGPPBEEncryptedData pbe = (PGPPBEEncryptedData) enc.get(0);
656-
InputStream clear = pbe.getDataStream(new JcePBEDataDecryptorFactoryBuilder(new JcaPGPDigestCalculatorProviderBuilder().setProvider(BouncyCastleProvider.PROVIDER_NAME).build())
655+
InputStream clear = pbe.getDataStream(new JcePBEDataDecryptorFactoryBuilder()
657656
.setProvider(BouncyCastleProvider.PROVIDER_NAME).build(passPhrase));
658657

659658
JcaPGPObjectFactory pgpFact = new JcaPGPObjectFactory(clear);

0 commit comments

Comments
 (0)