We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdb1698 commit 4c06e81Copy full SHA for 4c06e81
1 file changed
cipherscan
@@ -129,7 +129,7 @@ join_array_by_char ':' "${SHORTCIPHERSUITE[@]}"
129
SHORTCIPHERSUITESTRING="$joined_array"
130
131
# TLS 1.3 is different from other versions of the protocol and
132
-# ciphersuites must be passed to openssl explicitely
+# ciphersuites must be passed to openssl explicitly
133
TLS13CIPHERSUITE=(
134
'TLS_AES_256_GCM_SHA384'
135
'TLS_AES_128_GCM_SHA256'
@@ -478,7 +478,7 @@ parse_openssl_output() {
478
fi
479
480
# extract used protocol
481
- if [[ $line =~ Protocol\ + ]]; then
+ if [[ $line =~ ^Protocol\ + ]]; then
482
local match=($line)
483
current_protocol="${match[2]}"
484
continue
0 commit comments