| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "content/browser/cert_store_impl.h" | |
| 6 | |
| 7 namespace content { | |
| 8 | |
| 9 // static | |
| 10 CertStore* CertStore::GetInstance() { | |
| 11 return CertStoreImpl::GetInstance(); | |
| 12 } | |
| 13 | |
| 14 // static | |
| 15 CertStoreImpl* CertStoreImpl::GetInstance() { | |
| 16 return base::Singleton<CertStoreImpl>::get(); | |
| 17 } | |
| 18 | |
| 19 int CertStoreImpl::StoreCert(net::X509Certificate* cert, int process_id) { | |
| 20 scoped_refptr<HashAndCert> hash_and_cert(new HashAndCert); | |
| 21 hash_and_cert->chain_hash = | |
| 22 net::X509Certificate::CalculateChainFingerprint256( | |
| 23 cert->os_cert_handle(), cert->GetIntermediateCertificates()); | |
| 24 hash_and_cert->cert = cert; | |
| 25 return store_.Store(hash_and_cert.get(), process_id); | |
| 26 } | |
| 27 | |
| 28 bool CertStoreImpl::RetrieveCert(int cert_id, | |
| 29 scoped_refptr<net::X509Certificate>* cert) { | |
| 30 scoped_refptr<HashAndCert> hash_and_cert; | |
| 31 if (store_.Retrieve(cert_id, &hash_and_cert)) { | |
| 32 *cert = hash_and_cert->cert; | |
| 33 return true; | |
| 34 } | |
| 35 return false; | |
| 36 } | |
| 37 | |
| 38 CertStoreImpl::CertStoreImpl() {} | |
| 39 | |
| 40 CertStoreImpl::~CertStoreImpl() {} | |
| 41 | |
| 42 CertStoreImpl::HashAndCert::HashAndCert() = default; | |
| 43 | |
| 44 bool CertStoreImpl::HashAndCert::LessThan::operator()( | |
| 45 const scoped_refptr<HashAndCert>& lhs, | |
| 46 const scoped_refptr<HashAndCert>& rhs) const { | |
| 47 return net::SHA256HashValueLessThan()(lhs->chain_hash, rhs->chain_hash); | |
| 48 } | |
| 49 | |
| 50 CertStoreImpl::HashAndCert::~HashAndCert() = default; | |
| 51 | |
| 52 } // namespace content | |
| OLD | NEW |