Closed jschanck closed 2 years ago
In the moz_kinto_publisher script we key a dictionary of intermediate CAs using the following unique_id function: https://github.com/mozilla/crlite/blob/123ac015357421ff46530b1af76a8f7116629785/moz_kinto_publisher/main.py#L305-L310 Intermediates with distinct unique_ids get distinct entries in the Remote Settings collection.
unique_id
Remote Settings clients, however, only key based on pubKeyHash and subjectDN. So entries that differ in pemHash are useless.
pubKeyHash
subjectDN
pemHash
There are 2908 entries in the remote settings collection and only 2198 that have distinct (pubKeyHash, subjectDN) values.
Closing since these duplicates are potentially useful for intermediates preloading.
In the moz_kinto_publisher script we key a dictionary of intermediate CAs using the following
unique_id
function: https://github.com/mozilla/crlite/blob/123ac015357421ff46530b1af76a8f7116629785/moz_kinto_publisher/main.py#L305-L310 Intermediates with distinctunique_id
s get distinct entries in the Remote Settings collection.Remote Settings clients, however, only key based on
pubKeyHash
andsubjectDN
. So entries that differ inpemHash
are useless.There are 2908 entries in the remote settings collection and only 2198 that have distinct (
pubKeyHash
,subjectDN
) values.