blob: 4253b5e03d6a5b43c865e91f37101bbf4138cfca [file] [log] [blame]
Yingdi Yu0b60e7a2015-07-16 21:05:11 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2013-2016 Regents of the University of California.
4 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6 *
7 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
20 */
21
22#ifndef NDN_SECURITY_TPM_BACK_END_MEM_HPP
23#define NDN_SECURITY_TPM_BACK_END_MEM_HPP
24
25#include "back-end.hpp"
26
27namespace ndn {
28namespace security {
29namespace tpm {
30
31/**
32 * @brief The back-end implementation of in-memory TPM.
33 */
34class BackEndMem : public BackEnd
35{
36public:
37 class Error : public BackEnd::Error
38 {
39 public:
40 explicit
41 Error(const std::string& what)
42 : BackEnd::Error(what)
43 {
44 }
45 };
46
47public:
48 explicit
49 BackEndMem();
50
51 ~BackEndMem() override;
52
53private: // inherited from tpm::BackEnd
54
55 /**
56 * @return True if a key with name @p keyName exists in TPM.
57 */
58 bool
59 doHasKey(const Name& keyName) const final;
60
61 /**
62 * @return The handle of a key with name @p keyName, or nullptr if the key does not exist
63 */
64 unique_ptr<KeyHandle>
65 doGetKeyHandle(const Name& keyName) const final;
66
67 /**
68 * @brief Create key for @p identityName according to @p params.
69 *
70 * The created key is named as: /<identityName>/[keyId]/KEY
71 * The key name is set in the returned KeyHandle.
72 * If the key with the same name is created, the old one will be removed.
73 * The behavior of using KeyHandler of removed key is undefined.
74 *
75 * @return The handle of the created key.
76 */
77 unique_ptr<KeyHandle>
78 doCreateKey(const Name& identityName, const KeyParams& params) final;
79
80 /**
81 * @brief Delete a key with name @p keyName.
82 *
83 * @throws Error if the deletion fails.
84 */
85 void
86 doDeleteKey(const Name& keyName) final;
87
88 /**
89 * @return A private key with name @p keyName in encrypted PKCS #8 format using password @p pw
90 * @throws Error if the key cannot be exported, e.g., not enough privilege
91 */
92 ConstBufferPtr
93 doExportKey(const Name& keyName, const char* pw, size_t pwLen) final;
94
95 /**
96 * @brief Import a private key in encrypted PKCS #8 format
97 *
98 * @param keyName The name of imported private key
99 * @param buf Pointer to the key in encrypted PKCS #8 format
100 * @param size The size of the key in encrypted PKCS #8 format
101 * @param pw The password to decrypt the key
102 * @param pwLen The length of password
103 * @throws Error if import fails.
104 */
105 void
106 doImportKey(const Name& keyName, const uint8_t* buf, size_t size, const char* pw, size_t pwLen) final;
107
108private:
109 class Impl;
110 unique_ptr<Impl> m_impl;
111};
112
113} // namespace tpm
114} // namespace security
115} // namespace ndn
116
117#endif // NDN_SECURITY_TPM_BACK_END_MEM_HPP