# File lib/puppet/ssl/host.rb, line 172 172: def certificate_matches_key? 173: return false unless key 174: return false unless certificate 175: 176: certificate.content.check_private_key(key.content) 177: end