Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <cert.h> | 5 #include <cert.h> |
| 6 #include <cryptohi.h> | 6 #include <cryptohi.h> |
| 7 #include <keyhi.h> | 7 #include <keyhi.h> |
| 8 #include <nss.h> | 8 #include <nss.h> |
| 9 #include <pk11pub.h> | 9 #include <pk11pub.h> |
| 10 #include <prtime.h> | 10 #include <prtime.h> |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 278 size_t* size_bits, | 278 size_t* size_bits, |
| 279 PublicKeyType* type) { | 279 PublicKeyType* type) { |
| 280 x509_util::GetPublicKeyInfo(cert_handle, size_bits, type); | 280 x509_util::GetPublicKeyInfo(cert_handle, size_bits, type); |
| 281 } | 281 } |
| 282 | 282 |
| 283 // static | 283 // static |
| 284 bool X509Certificate::IsSelfSigned(OSCertHandle cert_handle) { | 284 bool X509Certificate::IsSelfSigned(OSCertHandle cert_handle) { |
| 285 crypto::ScopedSECKEYPublicKey public_key(CERT_ExtractPublicKey(cert_handle)); | 285 crypto::ScopedSECKEYPublicKey public_key(CERT_ExtractPublicKey(cert_handle)); |
| 286 if (!public_key.get()) | 286 if (!public_key.get()) |
| 287 return false; | 287 return false; |
| 288 SECComparison c = | |
|
svaldez
2016/05/20 17:54:52
Do name check after key check to match other imple
dadrian
2016/05/20 19:01:21
Done.
| |
| 289 CERT_CompareName(&cert_handle->subject, &cert_handle->issuer); | |
| 290 if (c != SECComparison::SECEqual) { | |
| 291 return false; | |
| 292 } | |
| 288 return SECSuccess == CERT_VerifySignedDataWithPublicKey( | 293 return SECSuccess == CERT_VerifySignedDataWithPublicKey( |
| 289 &cert_handle->signatureWrap, public_key.get(), NULL); | 294 &cert_handle->signatureWrap, public_key.get(), NULL); |
| 290 } | 295 } |
| 291 | 296 |
| 292 } // namespace net | 297 } // namespace net |
| OLD | NEW |