Skip to content

Commit

Permalink
Add generic tls error message
Browse files Browse the repository at this point in the history
  • Loading branch information
vordimous committed Jun 3, 2024
1 parent 74af1f5 commit d11f441
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,27 +45,27 @@ public String format(
{
case TLS_FAILED:
{
result = "";
result = "There was a generic error detected by an SSL subsystem.";
break;
}
case TLS_PROTOCOL_REJECTED:
{
result = "";
result = "There was an error in the operation of the SSL protocol.";
break;
}
case TLS_KEY_REJECTED:
{
result = "";
result = "Bad SSL key due to misconfiguration of the server or client SSL certificate and private key.";
break;
}
case TLS_PEER_NOT_VERIFIED:
{
result = "";
result = "The peer's identity was not able to identify itself.";
break;
}
case TLS_HANDSHAKE_FAILED:
{
result = "";
result = "The client and server could not negotiate the desired level of security.";
break;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ telemetry:
- qname: test.app0
id: binding.tls.handshake.failed
name: BINDING_TLS_HANDSHAKE_FAILED
message: ""
message: The client and server could not negotiate the desired level of security.
vaults:
client:
type: filesystem
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ telemetry:
- qname: test.net0
id: binding.tls.handshake.failed
name: BINDING_TLS_HANDSHAKE_FAILED
message: ""
message: The client and server could not negotiate the desired level of security.
vaults:
server:
type: filesystem
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ telemetry:
- qname: test.net0
id: binding.tls.tls.failed
name: BINDING_TLS_TLS_FAILED
message: ""
message: There was a generic error detected by an SSL subsystem.
vaults:
server:
type: filesystem
Expand Down

0 comments on commit d11f441

Please sign in to comment.