blob: dcdea956df1f8079175221b288388ba9199009e6 [file] [log] [blame]
Jeff Thompson25b4e612013-10-10 16:03:24 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
Jeff Thompson7b79eb62013-09-12 18:48:29 -07002/**
Jeff Thompson7687dc02013-09-13 11:54:07 -07003 * Copyright (C) 2013 Regents of the University of California.
Jeff Thompson7b79eb62013-09-12 18:48:29 -07004 * @author: Yingdi Yu <yingdi@cs.ucla.edu>
Jeff Thompson7687dc02013-09-13 11:54:07 -07005 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
Jeff Thompson7b79eb62013-09-12 18:48:29 -07006 * See COPYING for copyright and distribution information.
7 */
8
Yingdi Yu31b4af22014-01-14 14:13:00 -08009#ifndef NDN_SEC_TPM_HPP
10#define NDN_SEC_TPM_HPP
Jeff Thompson7b79eb62013-09-12 18:48:29 -070011
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -080012#include "../common.hpp"
Yingdi Yu4f324632014-01-15 18:10:03 -080013#include "security-common.hpp"
14#include "../name.hpp"
15#include "../data.hpp"
16#include "public-key.hpp"
Jeff Thompson7b79eb62013-09-12 18:48:29 -070017
18namespace ndn {
19
Yingdi Yu31b4af22014-01-14 14:13:00 -080020class SecTpm {
Jeff Thompsona50703f2013-09-17 14:24:15 -070021public:
Alexander Afanasyeve64788e2014-01-05 22:38:21 -080022 struct Error : public std::runtime_error { Error(const std::string &what) : std::runtime_error(what) {} };
23
Jeff Thompson7b79eb62013-09-12 18:48:29 -070024 /**
Jeff Thompson6c314bc2013-09-23 18:09:38 -070025 * The virtual destructor.
Jeff Thompson7b79eb62013-09-12 18:48:29 -070026 */
27 virtual
Yingdi Yu31b4af22014-01-14 14:13:00 -080028 ~SecTpm() {}
Jeff Thompson7b79eb62013-09-12 18:48:29 -070029
Jeff Thompson7b79eb62013-09-12 18:48:29 -070030 /**
Jeff Thompson6c314bc2013-09-23 18:09:38 -070031 * Generate a pair of asymmetric keys.
32 * @param keyName The name of the key pair.
33 * @param keyType The type of the key pair, e.g. KEY_TYPE_RSA.
34 * @param keySize The size of the key pair.
Jeff Thompson7b79eb62013-09-12 18:48:29 -070035 */
36 virtual void
Yingdi Yu31b4af22014-01-14 14:13:00 -080037 generateKeyPairInTpm(const Name& keyName, KeyType keyType, int keySize) = 0;
Yingdi Yu28fd32f2014-01-28 19:03:03 -080038
39 /**
40 * Delete a key pair of asymmetric keys.
41 * @param keyName The name of the key pair.
42 */
43 virtual void
44 deleteKeyPairInTpm(const Name &keyName) = 0;
Jeff Thompson7b79eb62013-09-12 18:48:29 -070045
46 /**
Jeff Thompson6c314bc2013-09-23 18:09:38 -070047 * Get the public key
48 * @param keyName The name of public key.
49 * @return The public key.
Jeff Thompson7b79eb62013-09-12 18:48:29 -070050 */
Jeff Thompson6c314bc2013-09-23 18:09:38 -070051 virtual ptr_lib::shared_ptr<PublicKey>
Yingdi Yu31b4af22014-01-14 14:13:00 -080052 getPublicKeyFromTpm(const Name& keyName) = 0;
Jeff Thompson7b79eb62013-09-12 18:48:29 -070053
54 /**
Yingdi Yu3c5887c2014-01-21 18:19:49 -080055 * Fetch the private key for keyName and sign the data, returning a signature block.
Jeff Thompson4c11b9f2013-09-13 11:05:28 -070056 * @param data Pointer to the input byte array.
57 * @param dataLength The length of data.
Jeff Thompson7b79eb62013-09-12 18:48:29 -070058 * @param keyName The name of the signing key.
59 * @param digestAlgorithm the digest algorithm.
Yingdi Yu3c5887c2014-01-21 18:19:49 -080060 * @return The signature block.
61 * @throws SecTpm::Error
Jeff Thompson7b79eb62013-09-12 18:48:29 -070062 */
Alexander Afanasyeve64788e2014-01-05 22:38:21 -080063 virtual Block
Yingdi Yub4bb85a2014-01-16 10:11:04 -080064 signInTpm(const uint8_t *data, size_t dataLength, const Name& keyName, DigestAlgorithm digestAlgorithm) = 0;
Alexander Afanasyevbf1a67a2014-01-05 23:36:13 -080065
Jeff Thompson7b79eb62013-09-12 18:48:29 -070066 /**
Jeff Thompson6c314bc2013-09-23 18:09:38 -070067 * Decrypt data.
68 * @param keyName The name of the decrypting key.
69 * @param data The byte to be decrypted.
70 * @param dataLength the length of data.
Jeff Thompsoned978ee2013-12-13 12:29:43 -080071 * @param isSymmetric If true symmetric encryption is used, otherwise asymmetric encryption is used.
Jeff Thompson6c314bc2013-09-23 18:09:38 -070072 * @return The decrypted data.
Jeff Thompson7b79eb62013-09-12 18:48:29 -070073 */
Alexander Afanasyev64a3d812014-01-05 23:35:05 -080074 virtual ConstBufferPtr
Yingdi Yub4bb85a2014-01-16 10:11:04 -080075 decryptInTpm(const Name& keyName, const uint8_t* data, size_t dataLength, bool isSymmetric) = 0;
Jeff Thompson6c314bc2013-09-23 18:09:38 -070076
Jeff Thompson7b79eb62013-09-12 18:48:29 -070077 /**
Jeff Thompson6c314bc2013-09-23 18:09:38 -070078 * Encrypt data.
79 * @param keyName The name of the encrypting key.
80 * @param data The byte to be encrypted.
81 * @param dataLength the length of data.
Jeff Thompsoned978ee2013-12-13 12:29:43 -080082 * @param isSymmetric If true symmetric encryption is used, otherwise asymmetric encryption is used.
Jeff Thompson6c314bc2013-09-23 18:09:38 -070083 * @return The encrypted data.
Jeff Thompson7b79eb62013-09-12 18:48:29 -070084 */
Alexander Afanasyev64a3d812014-01-05 23:35:05 -080085 virtual ConstBufferPtr
Yingdi Yub4bb85a2014-01-16 10:11:04 -080086 encryptInTpm(const Name& keyName, const uint8_t* data, size_t dataLength, bool isSymmetric) = 0;
Jeff Thompson6c314bc2013-09-23 18:09:38 -070087
Jeff Thompson7b79eb62013-09-12 18:48:29 -070088 /**
Jeff Thompson6c314bc2013-09-23 18:09:38 -070089 * @brief Generate a symmetric key.
90 * @param keyName The name of the key.
91 * @param keyType The type of the key, e.g. KEY_TYPE_AES.
92 * @param keySize The size of the key.
Jeff Thompson7b79eb62013-09-12 18:48:29 -070093 */
94 virtual void
Yingdi Yub4bb85a2014-01-16 10:11:04 -080095 generateSymmetricKeyInTpm(const Name& keyName, KeyType keyType, int keySize) = 0;
Jeff Thompson7b79eb62013-09-12 18:48:29 -070096
97 /**
Jeff Thompson6c314bc2013-09-23 18:09:38 -070098 * Check if a particular key exists.
99 * @param keyName The name of the key.
100 * @param keyClass The class of the key, e.g. KEY_CLASS_PUBLIC, KEY_CLASS_PRIVATE, or KEY_CLASS_SYMMETRIC.
101 * @return True if the key exists, otherwise false.
Jeff Thompson7b79eb62013-09-12 18:48:29 -0700102 */
103 virtual bool
Yingdi Yub4bb85a2014-01-16 10:11:04 -0800104 doesKeyExistInTpm(const Name& keyName, KeyClass keyClass) = 0;
Yingdi Yu4b752752014-02-18 12:24:03 -0800105
106 /**
Yingdi Yu8dceb1d2014-02-18 12:45:10 -0800107 * @brief Generate a random block.
Yingdi Yu4b752752014-02-18 12:24:03 -0800108 *
Yingdi Yu8dceb1d2014-02-18 12:45:10 -0800109 * @param res The pointer to the generated block.
110 * @param size The random block size.
Yingdi Yu4b752752014-02-18 12:24:03 -0800111 * @return true for success, otherwise false.
112 */
113 virtual bool
114 generateRandomBlock(uint8_t* res, size_t size) = 0;
Yingdi Yu8dceb1d2014-02-18 12:45:10 -0800115
116 /**
117 * @brief Export a private key in PKCS#8 format.
118 *
119 * @param keyName The private key name.
120 * @param password The password to encrypt the private key.
121 * @param inTerminal If password is not supplied, get it via terminal if inTerminal is true, otherwise fail.
122 * @return The private key info (in PKCS8 format) if exist, otherwise a NULL pointer.
123 */
124 ConstBufferPtr
125 exportPrivateKeyPkcs8FromTpm(const Name& keyName, bool inTerminal, const std::string& password);
126
127 /**
128 * @brief Import a private key in PKCS#8 format.
129 *
130 * Also recover the public key and installed it in TPM.
131 *
132 * @param keyName The private key name.
133 * @param key The encoded private key info.
134 * @param password The password to encrypt the private key.
135 * @param inTerminal If password is not supplied, get it via terminal if inTerminal is true, otherwise fail.
136 * @return False if import fails.
137 */
138 bool
139 importPrivateKeyPkcs8IntoTpm(const Name& keyName, const uint8_t* buf, size_t size, bool inTerminal, const std::string& password);
140
141protected:
142 /**
143 * @brief Export a private key in PKCS#1 format.
144 *
145 * @param keyName The private key name.
146 * @return The private key info (in PKCS#1 format) if exist, otherwise a NULL pointer.
147 */
148 virtual ConstBufferPtr
149 exportPrivateKeyPkcs1FromTpm(const Name& keyName) = 0;
150
151 /**
152 * @brief Import a private key in PKCS#1 format.
153 *
154 * @param keyName The private key name.
155 * @param key The encoded private key info.
156 * @return False if import fails.
157 */
158 virtual bool
159 importPrivateKeyPkcs1IntoTpm(const Name& keyName, const uint8_t* buf, size_t size) = 0;
160
161 /**
162 * @brief Import a public key in PKCS#1 format.
163 *
164 * @param keyName The public key name.
165 * @param key The encoded public key info.
166 * @return False if import fails.
167 */
168 virtual bool
169 importPublicKeyPkcs1IntoTpm(const Name& keyName, const uint8_t* buf, size_t size) = 0;
170
171
172 /**
173 * @brief Get password.
174 *
175 * @param password On return, the password.
176 * @param prompt Prompt for password, i.e., "Password for key:"
177 * @return true if password has been obtained.
178 */
179 inline virtual bool
180 getPassWord(std::string& password, const std::string& prompt);
Jeff Thompson7b79eb62013-09-12 18:48:29 -0700181};
182
Yingdi Yu8dceb1d2014-02-18 12:45:10 -0800183bool
184SecTpm::getPassWord(std::string& password, const std::string& prompt)
185{
186 int result = false;
187
188 char* pw0 = NULL;
189
190 pw0 = getpass(prompt.c_str());
191 if(!pw0)
192 return false;
193 std::string password1 = pw0;
194 memset(pw0, 0, strlen(pw0));
195
196 pw0 = getpass("Confirm:");
197 if(!pw0)
198 {
199 char* pw1 = const_cast<char*>(password1.c_str());
200 memset(pw1, 0, password1.size());
201 return false;
202 }
203
204 if(!password1.compare(pw0))
205 {
206 result = true;
207 password.swap(password1);
208 }
209
210 char* pw1 = const_cast<char*>(password1.c_str());
211 memset(pw1, 0, password1.size());
212 memset(pw0, 0, strlen(pw0));
213 return result;
214}
215
Jeff Thompson7b79eb62013-09-12 18:48:29 -0700216}
217
218#endif