| 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 #ifndef CRYPTO_NSS_UTIL_INTERNAL_H_ | 5 #ifndef CRYPTO_NSS_UTIL_INTERNAL_H_ |
| 6 #define CRYPTO_NSS_UTIL_INTERNAL_H_ | 6 #define CRYPTO_NSS_UTIL_INTERNAL_H_ |
| 7 | 7 |
| 8 #include <secmodt.h> | 8 #include <secmodt.h> |
| 9 | 9 |
| 10 #include "crypto/crypto_export.h" | 10 #include "crypto/crypto_export.h" |
| 11 | 11 |
| 12 namespace base { |
| 13 class FilePath; |
| 14 } |
| 15 |
| 12 // These functions return a type defined in an NSS header, and so cannot be | 16 // These functions return a type defined in an NSS header, and so cannot be |
| 13 // declared in nss_util.h. Hence, they are declared here. | 17 // declared in nss_util.h. Hence, they are declared here. |
| 14 | 18 |
| 15 namespace crypto { | 19 namespace crypto { |
| 16 | 20 |
| 17 // Returns a reference to the default NSS key slot for storing | 21 // Returns a reference to the default NSS key slot for storing |
| 18 // public-key data only (e.g. server certs). Caller must release | 22 // public-key data only (e.g. server certs). Caller must release |
| 19 // returned reference with PK11_FreeSlot. | 23 // returned reference with PK11_FreeSlot. |
| 20 CRYPTO_EXPORT PK11SlotInfo* GetPublicNSSKeySlot(); | 24 CRYPTO_EXPORT PK11SlotInfo* GetPublicNSSKeySlot(); |
| 21 | 25 |
| 22 // Returns a reference to the default slot for storing private-key and | 26 // Returns a reference to the default slot for storing private-key and |
| 23 // mixed private-key/public-key data. Returns a hardware (TPM) NSS | 27 // mixed private-key/public-key data. Returns a hardware (TPM) NSS |
| 24 // key slot if on ChromeOS and EnableTPMForNSS() has been called | 28 // key slot if on ChromeOS and EnableTPMForNSS() has been called |
| 25 // successfully. Caller must release returned reference with | 29 // successfully. Caller must release returned reference with |
| 26 // PK11_FreeSlot. | 30 // PK11_FreeSlot. |
| 27 CRYPTO_EXPORT PK11SlotInfo* GetPrivateNSSKeySlot(); | 31 CRYPTO_EXPORT PK11SlotInfo* GetPrivateNSSKeySlot(); |
| 28 | 32 |
| 29 // A helper class that acquires the SECMOD list read lock while the | 33 // A helper class that acquires the SECMOD list read lock while the |
| 30 // AutoSECMODListReadLock is in scope. | 34 // AutoSECMODListReadLock is in scope. |
| 31 class AutoSECMODListReadLock { | 35 class AutoSECMODListReadLock { |
| 32 public: | 36 public: |
| 33 AutoSECMODListReadLock(); | 37 AutoSECMODListReadLock(); |
| 34 ~AutoSECMODListReadLock(); | 38 ~AutoSECMODListReadLock(); |
| 35 | 39 |
| 36 private: | 40 private: |
| 37 SECMODListLock* lock_; | 41 SECMODListLock* lock_; |
| 38 DISALLOW_COPY_AND_ASSIGN(AutoSECMODListReadLock); | 42 DISALLOW_COPY_AND_ASSIGN(AutoSECMODListReadLock); |
| 39 }; | 43 }; |
| 40 | 44 |
| 45 #if defined(OS_CHROMEOS) |
| 46 // Open the r/w nssdb that's stored inside secondary user's encrypted home |
| 47 // directory. Caller is responsible for closing the DB and releasing the slot. |
| 48 CRYPTO_EXPORT PK11SlotInfo* OpenPersistentNSSDBForPath( |
| 49 const base::FilePath& path); |
| 50 |
| 51 // Returns a reference to the ChromeOS TPM key slot for slot id. Caller must |
| 52 // release returned reference with PK11_FreeSlot. |
| 53 CRYPTO_EXPORT PK11SlotInfo* GetTPMSlotForId(CK_SLOT_ID slot_id); |
| 54 #endif |
| 55 |
| 41 } // namespace crypto | 56 } // namespace crypto |
| 42 | 57 |
| 43 #endif // CRYPTO_NSS_UTIL_INTERNAL_H_ | 58 #endif // CRYPTO_NSS_UTIL_INTERNAL_H_ |
| OLD | NEW |