Merge pull request #125 from tomato42/sort-cas-by-usage

sort CA's by count, not name
This commit is contained in:
Julien Vehent [:ulfr] 2016-09-30 15:30:48 -04:00 committed by GitHub
commit e5b747d29b
1 changed files with 7 additions and 6 deletions

View File

@ -19,6 +19,7 @@ import sys
from collections import defaultdict
import os
from OpenSSL import crypto
from operator import itemgetter
invocations = defaultdict(int)
@ -321,12 +322,12 @@ for stat in sorted(effective_security):
print("\nRoot CAs Count Percent")
print("---------------------------------------------+---------+-------")
for stat in sorted(root_CA):
percent = round(root_CA[stat] / total * 100, 4)
sys.stdout.write(stat.ljust(45)[0:45] + " " + str(root_CA[stat]).ljust(10) + str(percent).ljust(4) + "\n")
for stat, val in sorted(root_CA.items(), key=itemgetter(1), reverse=True):
percent = round(val / total * 100, 4)
sys.stdout.write(stat.ljust(45)[0:45] + " " + str(val).ljust(10) + str(percent).ljust(4) + "\n")
print("\nIntermediate CA Count Percent")
print("---------------------------------------------+---------+-------")
for stat in sorted(intermediate_CA):
percent = round(intermediate_CA[stat] / total * 100, 4)
sys.stdout.write(stat.ljust(45)[0:45] + " " + str(intermediate_CA[stat]).ljust(10) + str(percent).ljust(4) + "\n")
for stat, val in sorted(intermediate_CA.items(), key=itemgetter(1), reverse=True):
percent = round(val / total * 100, 4)
sys.stdout.write(stat.ljust(45)[0:45] + " " + str(val).ljust(10) + str(percent).ljust(4) + "\n")