Skip to content

Commit

Permalink
Merge pull request #34091 from sberyozkin/bouncy_castle_1.74
Browse files Browse the repository at this point in the history
Bump BouncyCastle version to 1.74
  • Loading branch information
sberyozkin authored Jun 19, 2023
2 parents bde7cb5 + bb73395 commit d777bbb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<properties>
<angus-activation.version>2.0.1</angus-activation.version>
<bouncycastle.version>1.73</bouncycastle.version>
<bouncycastle.version>1.74</bouncycastle.version>
<bouncycastle.fips.version>1.0.2.3</bouncycastle.fips.version>
<bouncycastle.tls.fips.version>1.0.16</bouncycastle.tls.fips.version>
<expressly.version>5.0.0</expressly.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit d777bbb

Please sign in to comment.