You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the number of SCTs related to the Lifetime of Certificate is defined in months. However, this leaves it ambiguous as to how to calculate it.
Several possible interpretations have been arrived at:
Treating every month as 31 days, thus 15 months is 465 days
Treating 15 months as the maximum legitimate period (366 days, followed by a 3 months sequence of July/Aug/Sept at 31 + 31 + 30), or 458 days
A complex scheme of rounding, such that: (notAfter.year - notBefore.year) * 12 + (notAfter.month - notBefore.month), and then subtracting one if notAfter.day < notBefore.day.
Expressing this in days is seen as least ambiguous.
In the spirit of simplifying implementation and reducing ambiguity, we're changing the CT Qualified table to reflect certificate lifetimes in terms of days, not months. The second of the above three interpretations was chosen for month-to-day conversion:
Treating 15 months as the maximum legitimate period (366 days, followed by a 3 months sequence of July/Aug/Sept at 31 + 31 + 30), or 458 days
Currently, the number of SCTs related to the Lifetime of Certificate is defined in months. However, this leaves it ambiguous as to how to calculate it.
Several possible interpretations have been arrived at:
notAfter.year
-notBefore.year
) * 12 + (notAfter.month
-notBefore.month
), and then subtracting one ifnotAfter.day
<notBefore.day
.Expressing this in days is seen as least ambiguous.
For Chrome, this is https://bugs.chromium.org/p/chromium/issues/detail?id=713362
The text was updated successfully, but these errors were encountered: