Skip to content

Commit ab8a9d7

Browse files
committed
Update coloring of the number of bits of groups to yellow when bits is greater or equal to 112 and less than 128.
1 parent 8969a3a commit ab8a9d7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

‎sslscan.c‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6046,6 +6046,8 @@ int testSupportedGroups(struct sslCheckOptions *options) {
60466046
char *bits_color = RESET;
60476047
if (group_bit_strength < 112)
60486048
bits_color = COL_RED;
6049+
else if (group_bit_strength < 128)
6050+
bits_color = COL_YELLOW;
60496051
else
60506052
bits_color = COL_GREEN;
60516053

0 commit comments

Comments
 (0)