Archive for January 13th, 2016
Checking a SSL certificate’s expiry date with Python
Posted by Kyle Lexmond in Programming on January 13, 2016
Before I found the –keep-until-expiring option in the Let’s Encrypt command line client, I was thinking I’d have to parse the cert, extract the expiry date, then check it against the current date before returning True or False. Thankfully I found the much easier option, but I decided to post the code I wrote to […]