mirror of
https://github.com/mozilla/cipherscan.git
synced 2024-11-22 14:23:41 +01:00
Fixes instances of "SC2053: Quote the rhs of == in [[ ]] to prevent glob matching."
In cipherscan line 469: if [[ ${known_certs[$cksum]} == $cert ]]; then ^-- SC2053: Quote the rhs of == in [[ ]] to prevent glob matching. In cipherscan line 852: if [[ $selected == $prefered ]]; then ^-- SC2053: Quote the rhs of == in [[ ]] to prevent glob matching. In cipherscan line 915: if [[ "$cname" == ${curves[$id]} ]]; then ^-- SC2053: Quote the rhs of == in [[ ]] to prevent glob matching.
This commit is contained in:
parent
24268e063e
commit
b2521c8e42
@ -503,7 +503,7 @@ test_cipher_on_target() {
|
|||||||
local cksum=($(cksum <<<"$cert"))
|
local cksum=($(cksum <<<"$cert"))
|
||||||
# compare the values not just checksums so that eventual collision
|
# compare the values not just checksums so that eventual collision
|
||||||
# doesn't mess up results
|
# doesn't mess up results
|
||||||
if [[ ${known_certs[$cksum]} == $cert ]]; then
|
if [[ ${known_certs[$cksum]} == "$cert" ]]; then
|
||||||
if [[ -n "${current_certificates}" ]]; then
|
if [[ -n "${current_certificates}" ]]; then
|
||||||
current_certificates+=","
|
current_certificates+=","
|
||||||
fi
|
fi
|
||||||
@ -886,7 +886,7 @@ test_serverside_ordering() {
|
|||||||
serverside="True"
|
serverside="True"
|
||||||
else
|
else
|
||||||
local selected=($result)
|
local selected=($result)
|
||||||
if [[ $selected == $prefered ]]; then
|
if [[ $selected == "$prefered" ]]; then
|
||||||
serverside="False"
|
serverside="False"
|
||||||
else
|
else
|
||||||
serverside="True"
|
serverside="True"
|
||||||
@ -949,7 +949,7 @@ test_curves() {
|
|||||||
current_curves+="$cname"
|
current_curves+="$cname"
|
||||||
fi
|
fi
|
||||||
for id in "${!curves[@]}"; do
|
for id in "${!curves[@]}"; do
|
||||||
if [[ "$cname" == ${curves[$id]} ]]; then
|
if [[ $cname == "${curves[$id]}" ]]; then
|
||||||
# we know it's supported, remove it from set of offered ones
|
# we know it's supported, remove it from set of offered ones
|
||||||
unset curves[$id]
|
unset curves[$id]
|
||||||
break
|
break
|
||||||
|
Loading…
Reference in New Issue
Block a user