|
|
|
|
|
by insomniacity
1056 days ago
|
|
> The old public key’s certificate revealed it was issued on April 5th, 2016, and expired on April 4th, 2021, and its thumbprint matched the thumbprint of the key Microsoft listed in their latest blog post, named “Thumbprint of acquired signing key” Am I reading this right? The key was expired? And still in use?? |
|
In one of them, which is the way TSL verification works, it goes something like this when checking certificate Cn that is signed by Cn-1 which is signed by ... is signed by C0.
Each certificate's expiration is checked against the current time.The other, which is used for code signing, goes something like this:
Cn is checked against the current time. The rest of them are checked against the time at which they signed the next downstream certificate.I understand why code signing works like that. It's essentially digital notarization, and you don't want your notarized documents to become no longer notarized just because the notary public you used has since stopped being a notary public and let their license expire.