blob: 8b0e30832476896b38916c72c9186cdf90fdfcb2 [file] [log] [blame]
Yingdi Yu0b60e7a2015-07-16 21:05:11 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoff3bf2c2017-10-05 00:14:27 -04002/*
Davide Pesavento5ee8ec02018-09-01 19:06:12 -04003 * Copyright (c) 2013-2018 Regents of the University of California.
Yingdi Yu0b60e7a2015-07-16 21:05:11 -07004 *
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_KEY_HANDLE_OSX_HPP
23#define NDN_SECURITY_TPM_KEY_HANDLE_OSX_HPP
24
25#include "key-handle.hpp"
Yingdi Yu0b60e7a2015-07-16 21:05:11 -070026
Alexander Afanasyev0cf887d2017-03-26 16:58:59 -050027#ifndef NDN_CXX_HAVE_OSX_FRAMEWORKS
Yingdi Yu0b60e7a2015-07-16 21:05:11 -070028#error "This file should not be compiled ..."
29#endif
30
Davide Pesavento5ee8ec02018-09-01 19:06:12 -040031#include "key-ref-osx.hpp"
32
Yingdi Yu0b60e7a2015-07-16 21:05:11 -070033namespace ndn {
34namespace security {
35namespace tpm {
36
Yingdi Yu0b60e7a2015-07-16 21:05:11 -070037/**
38 * @brief Abstraction of TPM key handle used by the TPM based on OS X Keychain Service.
39 */
40class KeyHandleOsx : public KeyHandle
41{
42public:
Davide Pesaventoff3bf2c2017-10-05 00:14:27 -040043 explicit
44 KeyHandleOsx(const KeyRefOsx& key);
Yingdi Yu0b60e7a2015-07-16 21:05:11 -070045
46private:
47 ConstBufferPtr
48 doSign(DigestAlgorithm digestAlgorithm, const uint8_t* buf, size_t size) const final;
49
50 ConstBufferPtr
51 doDecrypt(const uint8_t* cipherText, size_t cipherTextLen) const final;
52
53 ConstBufferPtr
54 doDerivePublicKey() const final;
55
56private:
Yingdi Yu0b60e7a2015-07-16 21:05:11 -070057 KeyRefOsx m_key;
58};
59
60} // namespace tpm
61} // namespace security
62} // namespace ndn
63
64#endif // NDN_SECURITY_TPM_KEY_HANDLE_OSX_HPP