Skip to content

Commit c099fb8

Browse files
authored
Merge pull request #34045 from quarkusio/dependabot/maven/org.bouncycastle-bctls-fips-1.0.16
Bump bctls-fips from 1.0.14.1 to 1.0.16
2 parents 1e0d4b0 + 0c83ebf commit c099fb8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

bom/application/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<angus-activation.version>2.0.1</angus-activation.version>
1818
<bouncycastle.version>1.73</bouncycastle.version>
1919
<bouncycastle.fips.version>1.0.2.3</bouncycastle.fips.version>
20-
<bouncycastle.tls.fips.version>1.0.14.1</bouncycastle.tls.fips.version>
20+
<bouncycastle.tls.fips.version>1.0.16</bouncycastle.tls.fips.version>
2121
<expressly.version>5.0.0</expressly.version>
2222
<findbugs.version>3.0.2</findbugs.version>
2323
<jakarta.authentication-api>3.0.0</jakarta.authentication-api>

integration-tests/bouncycastle-fips-jsse/src/test/java/io/quarkus/it/bouncycastle/BouncyCastleFipsJsseTestCase.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,12 @@ public void run() throws Throwable {
108108
while ((line = reader.readLine()) != null) {
109109
sbLog.append(line).append("/r/n");
110110
if (!checkServerPassed && line.contains("ProvTlsServer")
111-
&& (line.contains("Server selected protocol version: TLSv1.2")
112-
|| line.contains("Server selected protocol version: TLSv1.3"))) {
111+
&& (line.contains("selected protocol version: TLSv1.2")
112+
|| line.contains("selected protocol version: TLSv1.3"))) {
113113
checkServerPassed = true;
114114
} else if (!checkClientPassed && line.contains("ProvTlsClient")
115-
&& (line.contains("Client notified of selected protocol version: TLSv1.2")
116-
|| line.contains("Client notified of selected protocol version: TLSv1.3"))) {
115+
&& (line.contains("notified of selected protocol version: TLSv1.2")
116+
|| line.contains("notified of selected protocol version: TLSv1.3"))) {
117117
checkClientPassed = true;
118118
}
119119
if (checkClientPassed && checkServerPassed) {

0 commit comments

Comments
 (0)