10.8. Adding Hostname Checking to Certificate Verification
Problem
You have a certificate that has passed initial verification checks as described in Recipe 10.4. Now you want to make sure that it was issued to the host that is claiming ownership of it.
Solution
A
certificate often contains a
commonName
field, and many certificates contain a
subjectAltName
extension, although neither is
required. Normally, when a server presents a certificate, the
commonly accepted convention is for either the
commonName
or the
subjectAltName
to contain the hostname of the
server that is presenting it. Often, if both fields are present, they
will contain the same information. If both fields are present and
they contain different information, it is most likely because the
commonName
field contains some information other
than a hostname. Even if both fields contain hostnames, the
subjectAltName
field should always take precedence
over the commonName
field. Certificate extensions
were added to the X.509 standard in Version 3, so older certificates
use the commonName
field, while newer ones use the
subjectAltName
extension.
Discussion
The basic certificate verification, as described in Recipe 10.4, is the hard part of verifying a certificate. It ensures that the certificate is valid for the dates it was issued (i.e., the current date is within the certificate’s start and end dates), it has not been revoked (provided that you have the relevant CRL), and it was signed by a trusted CA. Now you must make ...
Get Secure Programming Cookbook for C and C++ now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.