[go: nahoru, domu]

blob: 056ec28c165d19b39a8c6a5643172216e587793e [file] [log] [blame]
ajwong@chromium.orgcf211882012-07-11 07:19:141// Copyright (c) 2012 The Chromium Authors. All rights reserved.
cmasone@google.comdcce6cf2010-04-29 17:50:062// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
rvargas@google.com4b559b4d2011-04-14 17:37:145#ifndef CRYPTO_NSS_UTIL_INTERNAL_H_
6#define CRYPTO_NSS_UTIL_INTERNAL_H_
cmasone@google.comdcce6cf2010-04-29 17:50:067
8#include <secmodt.h>
9
darin@chromium.orgd613a9902011-08-05 20:59:1110#include "crypto/crypto_export.h"
rvargas@google.come4c9dda2011-06-20 23:24:0911
cmasone@google.comdcce6cf2010-04-29 17:50:0612// 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.
14
rvargas@google.com4b559b4d2011-04-14 17:37:1415namespace crypto {
cmasone@google.comdcce6cf2010-04-29 17:50:0616
gspencer@chromium.org6a89ef22011-04-07 17:34:2117// Returns a reference to the default NSS key slot for storing
18// public-key data only (e.g. server certs). Caller must release
19// returned reference with PK11_FreeSlot.
darin@chromium.orgd613a9902011-08-05 20:59:1120CRYPTO_EXPORT PK11SlotInfo* GetPublicNSSKeySlot();
gspencer@chromium.org6a89ef22011-04-07 17:34:2121
22// Returns a reference to the default slot for storing private-key and
23// mixed private-key/public-key data. Returns a hardware (TPM) NSS
24// key slot if on ChromeOS and EnableTPMForNSS() has been called
25// successfully. Caller must release returned reference with
26// PK11_FreeSlot.
darin@chromium.orgd613a9902011-08-05 20:59:1127CRYPTO_EXPORT PK11SlotInfo* GetPrivateNSSKeySlot();
cmasone@google.comdcce6cf2010-04-29 17:50:0628
gspencer@google.comdd24ffc2011-06-08 19:46:4229// A helper class that acquires the SECMOD list read lock while the
30// AutoSECMODListReadLock is in scope.
31class AutoSECMODListReadLock {
32 public:
33 AutoSECMODListReadLock();
34 ~AutoSECMODListReadLock();
35
36 private:
37 SECMODListLock* lock_;
38 DISALLOW_COPY_AND_ASSIGN(AutoSECMODListReadLock);
39};
40
rvargas@google.com4b559b4d2011-04-14 17:37:1441} // namespace crypto
cmasone@google.comdcce6cf2010-04-29 17:50:0642
rvargas@google.com4b559b4d2011-04-14 17:37:1443#endif // CRYPTO_NSS_UTIL_INTERNAL_H_