View Single Post
Posts: 254 | Thanked: 509 times | Joined on Nov 2011 @ Canada
#25
Originally Posted by jonwil View Post
Does anyone know where the filenames for the certificates (e.g. 00d85a4c25c122e58b31ef6dbaf3cc5f29f10d61-1.pem) come from? What is that string of numbers?
It's the x509 Subject Key Identifier, which AFAIK, is a way to identify the public key of the certificate.

openssl x509 -in <cert.pem> -text -noout

will show you that information (and a bunch more).