dan_vitch
dan_vitch

Reputation: 4559

Retrieve Data for SSL Tracking

I need to write an app that retrieves data on expiring SSL certs. What is the best way to locate this data for application purposes?

Upvotes: 2

Views: 112

Answers (2)

bignum
bignum

Reputation: 3458

For your reference, here are a few applications that do this type of thing. They may give you some ideas regarding features and interface.

cert scanner

checkcertificate

certificate expiry reporter

cert expiry checker

Upvotes: 1

dtb
dtb

Reputation: 217293

X509Certificate2 Class:

  • NotBefore Property - Gets the date in local time on which a certificate becomes valid.

  • NotAfter Property - Gets the date in local time after which a certificate is no longer valid.

Upvotes: 1

Related Questions