blob: 69f505231312a9e1e89e2a24be1534c31502c873 [file] [log] [blame]
Jeff Thompson6c314bc2013-09-23 18:09:38 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
2/**
3 * Copyright (C) 2013 Regents of the University of California.
4 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
5 * See COPYING for copyright and distribution information.
6 */
7
Yingdi Yu87581582014-01-14 14:28:39 -08008#ifndef NDN_SEC_TPM_MEMORY_HPP
9#define NDN_SEC_TPM_MEMORY_HPP
Jeff Thompson6c314bc2013-09-23 18:09:38 -070010
Alexander Afanasyeve2dcdfd2014-02-07 15:53:28 -080011#include "../common.hpp"
Yingdi Yu87581582014-01-14 14:28:39 -080012#include "sec-tpm.hpp"
Jeff Thompson6c314bc2013-09-23 18:09:38 -070013
14struct rsa_st;
15
16namespace ndn {
17
18/**
19 * MemoryPrivateKeyStorage extends PrivateKeyStorage to implement a simple in-memory private key store. You should
20 * initialize by calling setKeyPairForKeyName.
21 */
Yingdi Yu87581582014-01-14 14:28:39 -080022class SecTpmMemory : public SecTpm {
Jeff Thompson6c314bc2013-09-23 18:09:38 -070023public:
Yingdi Yu87581582014-01-14 14:28:39 -080024 struct Error : public SecTpm::Error { Error(const std::string &what) : SecTpm::Error(what) {} };
Alexander Afanasyeve64788e2014-01-05 22:38:21 -080025
Jeff Thompson6c314bc2013-09-23 18:09:38 -070026 /**
27 * The virtual destructor
28 */
29 virtual
Yingdi Yu87581582014-01-14 14:28:39 -080030 ~SecTpmMemory();
Jeff Thompson6c314bc2013-09-23 18:09:38 -070031
32 /**
33 * Set the public and private key for the keyName.
34 * @param keyName The key name.
35 * @param publicKeyDer The public key DER byte array.
36 * @param publicKeyDerLength The length of publicKeyDer.
37 * @param privateKeyDer The private key DER byte array.
38 * @param privateKeyDerLength The length of privateKeyDer.
39 */
Alexander Afanasyeve64788e2014-01-05 22:38:21 -080040 void setKeyPairForKeyName(const Name& keyName,
41 uint8_t *publicKeyDer, size_t publicKeyDerLength,
42 uint8_t *privateKeyDer, size_t privateKeyDerLength);
Jeff Thompson6c314bc2013-09-23 18:09:38 -070043
44 /**
45 * Generate a pair of asymmetric keys.
46 * @param keyName The name of the key pair.
47 * @param keyType The type of the key pair, e.g. KEY_TYPE_RSA.
48 * @param keySize The size of the key pair.
49 */
50 virtual void
Yingdi Yu87581582014-01-14 14:28:39 -080051 generateKeyPairInTpm(const Name& keyName, KeyType keyType, int keySize);
Jeff Thompson6c314bc2013-09-23 18:09:38 -070052
53 /**
54 * Get the public key
55 * @param keyName The name of public key.
56 * @return The public key.
57 */
58 virtual ptr_lib::shared_ptr<PublicKey>
Yingdi Yu87581582014-01-14 14:28:39 -080059 getPublicKeyFromTpm(const Name& keyName);
Yingdi Yu28fd32f2014-01-28 19:03:03 -080060
61 /**
62 * Delete a key pair of asymmetric keys.
63 * @param keyName The name of the key pair.
64 */
65 virtual void
66 deleteKeyPairInTpm(const Name &keyName);
Jeff Thompson6c314bc2013-09-23 18:09:38 -070067
68 /**
69 * Fetch the private key for keyName and sign the data, returning a signature Blob.
70 * @param data Pointer to the input byte array.
71 * @param dataLength The length of data.
72 * @param keyName The name of the signing key.
73 * @param digestAlgorithm the digest algorithm.
74 * @return The signature, or a null pointer if signing fails.
75 */
Alexander Afanasyeve64788e2014-01-05 22:38:21 -080076 virtual Block
Yingdi Yub4bb85a2014-01-16 10:11:04 -080077 signInTpm(const uint8_t *data, size_t dataLength, const Name& keyName, DigestAlgorithm digestAlgorithm);
Alexander Afanasyeve64788e2014-01-05 22:38:21 -080078
Jeff Thompson6c314bc2013-09-23 18:09:38 -070079 /**
80 * Decrypt data.
81 * @param keyName The name of the decrypting key.
82 * @param data The byte to be decrypted.
83 * @param dataLength the length of data.
84 * @param isSymmetric If true symmetric encryption is used, otherwise asymmetric decryption is used.
85 * @return The decrypted data.
86 */
Alexander Afanasyeve64788e2014-01-05 22:38:21 -080087 virtual ConstBufferPtr
Yingdi Yub4bb85a2014-01-16 10:11:04 -080088 decryptInTpm(const Name& keyName, const uint8_t* data, size_t dataLength, bool isSymmetric);
Jeff Thompson6c314bc2013-09-23 18:09:38 -070089
90 /**
91 * Encrypt data.
92 * @param keyName The name of the encrypting key.
93 * @param data The byte to be encrypted.
94 * @param dataLength the length of data.
95 * @param isSymmetric If true symmetric encryption is used, otherwise asymmetric decryption is used.
96 * @return The encrypted data.
97 */
Alexander Afanasyeve64788e2014-01-05 22:38:21 -080098 virtual ConstBufferPtr
Yingdi Yub4bb85a2014-01-16 10:11:04 -080099 encryptInTpm(const Name& keyName, const uint8_t* data, size_t dataLength, bool isSymmetric);
Jeff Thompson6c314bc2013-09-23 18:09:38 -0700100
101 /**
102 * @brief Generate a symmetric key.
103 * @param keyName The name of the key.
104 * @param keyType The type of the key, e.g. KEY_TYPE_AES.
105 * @param keySize The size of the key.
106 */
107 virtual void
Yingdi Yub4bb85a2014-01-16 10:11:04 -0800108 generateSymmetricKeyInTpm(const Name& keyName, KeyType keyType, int keySize);
Jeff Thompson6c314bc2013-09-23 18:09:38 -0700109
Yingdi Yu4b752752014-02-18 12:24:03 -0800110 virtual bool
111 generateRandomBlock(uint8_t* res, size_t size);
112
Jeff Thompson6c314bc2013-09-23 18:09:38 -0700113 /**
114 * Check if a particular key exists.
115 * @param keyName The name of the key.
116 * @param keyClass The class of the key, e.g. KEY_CLASS_PUBLIC, KEY_CLASS_PRIVATE, or KEY_CLASS_SYMMETRIC.
117 * @return True if the key exists, otherwise false.
118 */
119 virtual bool
Yingdi Yub4bb85a2014-01-16 10:11:04 -0800120 doesKeyExistInTpm(const Name& keyName, KeyClass keyClass);
Jeff Thompson6c314bc2013-09-23 18:09:38 -0700121
122private:
Alexander Afanasyeve64788e2014-01-05 22:38:21 -0800123 class RsaPrivateKey;
124
125 typedef std::map<std::string, ptr_lib::shared_ptr<PublicKey> > PublicKeyStore;
126 typedef std::map<std::string, ptr_lib::shared_ptr<RsaPrivateKey> > PrivateKeyStore;
127
128 PublicKeyStore publicKeyStore_; /**< The map key is the keyName.toUri() */
129 PrivateKeyStore privateKeyStore_; /**< The map key is the keyName.toUri() */
Jeff Thompson6c314bc2013-09-23 18:09:38 -0700130};
131
132}
133
134#endif