From bb73395fd6dbe965a4a1a73f6a605937800733da Mon Sep 17 00:00:00 2001 From: Sergey Beryozkin Date: Fri, 16 Jun 2023 12:20:55 +0100 Subject: [PATCH] Bump BouncyCastle version to 1.74 --- bom/application/pom.xml | 2 +- .../quarkus/it/bouncycastle/BouncyCastleJsseTestCase.java | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bom/application/pom.xml b/bom/application/pom.xml index 10be0a1944732..c9e2e20312310 100644 --- a/bom/application/pom.xml +++ b/bom/application/pom.xml @@ -15,7 +15,7 @@ 2.0.1 - 1.73 + 1.74 1.0.2.3 1.0.14.1 5.0.0 diff --git a/integration-tests/bouncycastle-jsse/src/test/java/io/quarkus/it/bouncycastle/BouncyCastleJsseTestCase.java b/integration-tests/bouncycastle-jsse/src/test/java/io/quarkus/it/bouncycastle/BouncyCastleJsseTestCase.java index 26be3a6af710a..5f0d8a1e2f415 100644 --- a/integration-tests/bouncycastle-jsse/src/test/java/io/quarkus/it/bouncycastle/BouncyCastleJsseTestCase.java +++ b/integration-tests/bouncycastle-jsse/src/test/java/io/quarkus/it/bouncycastle/BouncyCastleJsseTestCase.java @@ -82,12 +82,12 @@ public void run() throws Throwable { while ((line = reader.readLine()) != null) { sbLog.append(line).append("/r/n"); if (!checkServerPassed && line.contains("ProvTlsServer") - && (line.contains("Server selected protocol version: TLSv1.2") - || line.contains("Server selected protocol version: TLSv1.3"))) { + && (line.contains("selected protocol version: TLSv1.2") + || line.contains("selected protocol version: TLSv1.3"))) { checkServerPassed = true; } else if (!checkClientPassed && line.contains("ProvTlsClient") - && (line.contains("Client notified of selected protocol version: TLSv1.2") - || line.contains("Client notified of selected protocol version: TLSv1.3"))) { + && (line.contains("notified of selected protocol version: TLSv1.2") + || line.contains("notified of selected protocol version: TLSv1.3"))) { checkClientPassed = true; } if (checkClientPassed && checkServerPassed) {