From 496957720e01b524ae2e175afa7c6a4c65432ecb Mon Sep 17 00:00:00 2001 From: David Cooper Date: Wed, 16 Nov 2016 09:07:52 -0500 Subject: [PATCH] Fix neat_list() for Camellia GCM The string "CamelliaGCM" is too long for the "Encryption" column printed by `neat_list()`. So, either "CamelliaGCM" needs to be shortened to "Camellia" (as this PR does), or the "Encryption" column needs to be made wider. --- testssl.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/testssl.sh b/testssl.sh index 1bd0750..018deca 100755 --- a/testssl.sh +++ b/testssl.sh @@ -1937,6 +1937,7 @@ neat_list(){ enc="${enc//POLY1305/}" # remove POLY1305 enc="${enc//\//}" # remove "/" + enc="${enc/CamelliaGCM/Camellia}" # "CamelliaGCM" is too long echo "$export" | grep -iq export && strength="$strength,exp"