OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 "net/base/cert_database.h" | 5 #include "net/base/cert_database.h" |
6 | 6 |
| 7 #include <Security/Security.h> |
| 8 |
7 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "net/base/net_errors.h" |
8 | 11 |
9 namespace net { | 12 namespace net { |
10 | 13 |
11 CertDatabase::CertDatabase() { | 14 CertDatabase::CertDatabase() { |
12 NOTIMPLEMENTED(); | |
13 } | |
14 | |
15 bool CertDatabase::AddUserCert(const char* data, int len) { | |
16 NOTIMPLEMENTED(); | |
17 return false; | |
18 } | 15 } |
19 | 16 |
20 void CertDatabase::Init() { | 17 void CertDatabase::Init() { |
21 NOTIMPLEMENTED(); | 18 } |
| 19 |
| 20 int CertDatabase::CheckUserCert(X509Certificate* cert) { |
| 21 if (!cert) |
| 22 return ERR_CERT_INVALID; |
| 23 if (cert->HasExpired()) |
| 24 return ERR_CERT_DATE_INVALID; |
| 25 if (!cert->SupportsSSLClientAuth()) |
| 26 return ERR_CERT_INVALID; |
| 27 |
| 28 // Verify the Keychain already has the corresponding private key: |
| 29 SecIdentityRef identity = NULL; |
| 30 OSStatus err = SecIdentityCreateWithCertificate(NULL, cert->os_cert_handle(), |
| 31 &identity); |
| 32 if (err == errSecItemNotFound) { |
| 33 LOG(ERROR) << "CertDatabase couldn't find private key for user cert"; |
| 34 return ERR_CERT_NO_PRIVATE_KEY; |
| 35 } |
| 36 if (err != noErr || !identity) { |
| 37 // TODO(snej): Map the error code more intelligently. |
| 38 return ERR_CERT_INVALID; |
| 39 } |
| 40 |
| 41 CFRelease(identity); |
| 42 return OK; |
| 43 } |
| 44 |
| 45 int CertDatabase::AddUserCert(X509Certificate* cert) { |
| 46 OSStatus err = SecCertificateAddToKeychain(cert->os_cert_handle(), NULL); |
| 47 switch(err) { |
| 48 case noErr: |
| 49 case errSecDuplicateItem: |
| 50 return OK; |
| 51 default: |
| 52 LOG(ERROR) << "CertDatabase failed to add cert to keychain: " << err; |
| 53 // TODO(snej): Map the error code more intelligently. |
| 54 return ERR_FAILED; |
| 55 } |
22 } | 56 } |
23 | 57 |
24 } // namespace net | 58 } // namespace net |
OLD | NEW |