Jeff Thompson | 25b4e61 | 2013-10-10 16:03:24 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
Jeff Thompson | 4147191 | 2013-09-12 16:21:50 -0700 | [diff] [blame] | 2 | /** |
Jeff Thompson | 7687dc0 | 2013-09-13 11:54:07 -0700 | [diff] [blame] | 3 | * Copyright (C) 2013 Regents of the University of California. |
Jeff Thompson | 06e787d | 2013-09-12 19:00:55 -0700 | [diff] [blame] | 4 | * @author: Yingdi Yu <yingdi@cs.ucla.edu> |
Jeff Thompson | 7687dc0 | 2013-09-13 11:54:07 -0700 | [diff] [blame] | 5 | * @author: Jeff Thompson <jefft0@remap.ucla.edu> |
Jeff Thompson | 4147191 | 2013-09-12 16:21:50 -0700 | [diff] [blame] | 6 | * See COPYING for copyright and distribution information. |
| 7 | */ |
| 8 | |
| 9 | #ifndef NDN_IDENTITY_MANAGER_HPP |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 10 | #define NDN_IDENTITY_MANAGER_HPP |
Jeff Thompson | 4147191 | 2013-09-12 16:21:50 -0700 | [diff] [blame] | 11 | |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 12 | #include "../certificate/identity-certificate.hpp" |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 13 | #include "identity-storage.hpp" |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 14 | #include "../certificate/public-key.hpp" |
Jeff Thompson | 86e1d75 | 2013-09-17 17:22:38 -0700 | [diff] [blame] | 15 | #include "private-key-storage.hpp" |
Jeff Thompson | 4147191 | 2013-09-12 16:21:50 -0700 | [diff] [blame] | 16 | |
Jeff Thompson | 958bf9b | 2013-10-12 17:20:51 -0700 | [diff] [blame] | 17 | namespace ndn { |
| 18 | |
Jeff Thompson | ffa36f9 | 2013-09-20 08:42:41 -0700 | [diff] [blame] | 19 | /** |
| 20 | * An IdentityManager is the interface of operations related to identity, keys, and certificates. |
| 21 | */ |
Jeff Thompson | 4147191 | 2013-09-12 16:21:50 -0700 | [diff] [blame] | 22 | class IdentityManager { |
| 23 | public: |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 24 | IdentityManager(const ptr_lib::shared_ptr<IdentityStorage>& identityStorage, const ptr_lib::shared_ptr<PrivateKeyStorage>& privateKeyStorage) |
| 25 | : identityStorage_(identityStorage), privateKeyStorage_(privateKeyStorage) |
Jeff Thompson | 86e1d75 | 2013-09-17 17:22:38 -0700 | [diff] [blame] | 26 | { |
| 27 | } |
| 28 | |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 29 | /** |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 30 | * Create an identity by creating a pair of Key-Signing-Key (KSK) for this identity and a self-signed certificate of the KSK. |
| 31 | * @param identityName The name of the identity. |
| 32 | * @return The key name of the auto-generated KSK of the identity. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 33 | */ |
| 34 | Name |
| 35 | createIdentity(const Name& identityName); |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 36 | |
| 37 | /** |
| 38 | * Get the default identity. |
| 39 | * @return The default identity name. |
| 40 | */ |
| 41 | Name |
| 42 | getDefaultIdentity() |
| 43 | { |
| 44 | return identityStorage_->getDefaultIdentity(); |
| 45 | } |
| 46 | |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 47 | /** |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 48 | * Generate a pair of RSA keys for the specified identity. |
| 49 | * @param identityName The name of the identity. |
| 50 | * @param isKsk true for generating a Key-Signing-Key (KSK), false for a Data-Signing-Key (KSK). |
| 51 | * @param keySize The size of the key. |
| 52 | * @return The generated key name. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 53 | */ |
| 54 | Name |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 55 | generateRSAKeyPair(const Name& identityName, bool isKsk = false, int keySize = 2048); |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 56 | |
| 57 | /** |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 58 | * Set a key as the default key of an identity. |
| 59 | * @param keyName The name of the key. |
| 60 | * @param identityName the name of the identity. If not specified, the identity name is inferred from the keyName. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 61 | */ |
| 62 | void |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 63 | setDefaultKeyForIdentity(const Name& keyName, const Name& identityName = Name()) |
| 64 | { |
| 65 | identityStorage_->setDefaultKeyNameForIdentity(keyName, identityName); |
| 66 | } |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 67 | |
| 68 | /** |
Jeff Thompson | 18bf631 | 2013-10-04 11:23:55 -0700 | [diff] [blame] | 69 | * Get the default key for an identity. |
| 70 | * @param identityName the name of the identity. If omitted, the identity name is inferred from the keyName. |
| 71 | * @return The default key name. |
| 72 | */ |
| 73 | Name |
| 74 | getDefaultKeyNameForIdentity(const Name& identityName = Name()) |
| 75 | { |
| 76 | return identityStorage_->getDefaultKeyNameForIdentity(identityName); |
| 77 | } |
| 78 | |
| 79 | /** |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 80 | * Generate a pair of RSA keys for the specified identity and set it as default key for the identity. |
| 81 | * @param identityName The name of the identity. |
| 82 | * @param isKsk true for generating a Key-Signing-Key (KSK), false for a Data-Signing-Key (KSK). |
| 83 | * @param keySize The size of the key. |
| 84 | * @return The generated key name. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 85 | */ |
| 86 | Name |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 87 | generateRSAKeyPairAsDefault(const Name& identityName, bool isKsk = false, int keySize = 2048); |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 88 | |
| 89 | /** |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 90 | * Get the public key with the specified name. |
| 91 | * @param keyName The name of the key. |
| 92 | * @return The public key. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 93 | */ |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 94 | ptr_lib::shared_ptr<PublicKey> |
| 95 | getPublicKey(const Name& keyName) |
| 96 | { |
| 97 | return PublicKey::fromDer(identityStorage_->getKey(keyName)); |
| 98 | } |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 99 | |
| 100 | /** |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 101 | * Create an identity certificate for a public key managed by this IdentityManager. |
Jeff Thompson | 418b05a | 2013-10-22 17:48:54 -0700 | [diff] [blame] | 102 | * @param certificatePrefix The name of public key to be signed. |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 103 | * @param signerCertificateName The name of signing certificate. |
| 104 | * @param notBefore The notBefore value in the validity field of the generated certificate. |
| 105 | * @param notAfter The notAfter vallue in validity field of the generated certificate. |
| 106 | * @return The name of generated identity certificate. |
| 107 | */ |
| 108 | Name |
Jeff Thompson | 418b05a | 2013-10-22 17:48:54 -0700 | [diff] [blame] | 109 | createIdentityCertificate |
| 110 | (const Name& certificatePrefix, const Name& signerCertificateName, const MillisecondsSince1970& notBefore, |
| 111 | const MillisecondsSince1970& notAfter); |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 112 | |
| 113 | /** |
| 114 | * Create an identity certificate for a public key supplied by the caller. |
Jeff Thompson | 418b05a | 2013-10-22 17:48:54 -0700 | [diff] [blame] | 115 | * @param certificatePrefix The name of public key to be signed. |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 116 | * @param publickey The public key to be signed. |
| 117 | * @param signerCertificateName The name of signing certificate. |
| 118 | * @param notBefore The notBefore value in the validity field of the generated certificate. |
| 119 | * @param notAfter The notAfter vallue in validity field of the generated certificate. |
| 120 | * @return The generated identity certificate. |
| 121 | */ |
| 122 | ptr_lib::shared_ptr<IdentityCertificate> |
| 123 | createIdentityCertificate |
Jeff Thompson | 418b05a | 2013-10-22 17:48:54 -0700 | [diff] [blame] | 124 | (const Name& certificatePrefix, const PublicKey& publickey, const Name& signerCertificateName, |
| 125 | const MillisecondsSince1970& notBefore, const MillisecondsSince1970& notAfter); |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 126 | |
| 127 | /** |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 128 | * Add a certificate into the public key identity storage. |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 129 | * @param certificate The certificate to to added. This makes a copy of the certificate. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 130 | */ |
| 131 | void |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 132 | addCertificate(const IdentityCertificate& certificate) |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 133 | { |
| 134 | identityStorage_->addCertificate(certificate); |
| 135 | } |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 136 | |
| 137 | /** |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 138 | * Set the certificate as the default for its corresponding key. |
Jeff Thompson | 418b05a | 2013-10-22 17:48:54 -0700 | [diff] [blame] | 139 | * @param certificateName The certificate. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 140 | */ |
| 141 | void |
Jeff Thompson | 418b05a | 2013-10-22 17:48:54 -0700 | [diff] [blame] | 142 | setDefaultCertificateForKey(const IdentityCertificate& certificate); |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 143 | |
| 144 | /** |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 145 | * Add a certificate into the public key identity storage and set the certificate as the default for its corresponding identity. |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 146 | * @param certificate The certificate to be added. This makes a copy of the certificate. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 147 | */ |
| 148 | void |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 149 | addCertificateAsIdentityDefault(const IdentityCertificate& certificate); |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 150 | |
| 151 | /** |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 152 | * Add a certificate into the public key identity storage and set the certificate as the default of its corresponding key. |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 153 | * @param certificate The certificate to be added. This makes a copy of the certificate. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 154 | */ |
| 155 | void |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 156 | addCertificateAsDefault(const IdentityCertificate& certificate); |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 157 | |
| 158 | /** |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 159 | * Get a certificate with the specified name. |
| 160 | * @param certificateName The name of the requested certificate. |
| 161 | * @return the requested certificate which is valid. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 162 | */ |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 163 | ptr_lib::shared_ptr<IdentityCertificate> |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 164 | getCertificate(const Name& certificateName) |
| 165 | { |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 166 | return ptr_lib::make_shared<IdentityCertificate>(*identityStorage_->getCertificate(certificateName, false)); |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 167 | } |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 168 | |
| 169 | /** |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 170 | * Get a certificate even if the certificate is not valid anymore. |
| 171 | * @param certificateName The name of the requested certificate. |
| 172 | * @return the requested certificate. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 173 | */ |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 174 | ptr_lib::shared_ptr<IdentityCertificate> |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 175 | getAnyCertificate(const Name& certificateName) |
| 176 | { |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 177 | return ptr_lib::make_shared<IdentityCertificate>(*identityStorage_->getCertificate(certificateName, true)); |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 178 | } |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 179 | |
| 180 | /** |
| 181 | * Get the default certificate name for the specified identity, which will be used when signing is performed based on identity. |
| 182 | * @param identityName The name of the specified identity. |
| 183 | * @return The requested certificate name. |
| 184 | */ |
| 185 | Name |
| 186 | getDefaultCertificateNameForIdentity(const Name& identityName) |
| 187 | { |
| 188 | return identityStorage_->getDefaultCertificateNameForIdentity(identityName); |
| 189 | } |
| 190 | |
| 191 | /** |
| 192 | * Get the default certificate name of the default identity, which will be used when signing is based on identity and |
| 193 | * the identity is not specified. |
| 194 | * @return The requested certificate name. |
| 195 | */ |
| 196 | Name |
| 197 | getDefaultCertificateName() |
| 198 | { |
| 199 | return identityStorage_->getDefaultCertificateNameForIdentity(getDefaultIdentity()); |
| 200 | } |
| 201 | |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 202 | /** |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 203 | * Sign the byte array data based on the certificate name. |
Jeff Thompson | c01e178 | 2013-10-21 14:08:42 -0700 | [diff] [blame] | 204 | * @param buffer The byte array to be signed. |
| 205 | * @param bufferLength the length of buffer. |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 206 | * @param certificateName The signing certificate name. |
| 207 | * @return The generated signature. |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 208 | */ |
Jeff Thompson | c69163b | 2013-10-12 13:49:50 -0700 | [diff] [blame] | 209 | ptr_lib::shared_ptr<Signature> |
Jeff Thompson | c01e178 | 2013-10-21 14:08:42 -0700 | [diff] [blame] | 210 | signByCertificate(const uint8_t* buffer, size_t bufferLength, const Name& certificateName); |
| 211 | |
| 212 | /** |
| 213 | * Sign the byte array data based on the certificate name. |
| 214 | * @param buffer The byte array to be signed. |
| 215 | * @param certificateName The signing certificate name. |
| 216 | * @return The generated signature. |
| 217 | */ |
| 218 | ptr_lib::shared_ptr<Signature> |
| 219 | signByCertificate(const std::vector<uint8_t>& buffer, const Name& certificateName) |
| 220 | { |
| 221 | return signByCertificate(&buffer[0], buffer.size(), certificateName); |
| 222 | } |
| 223 | |
Jeff Thompson | 4147191 | 2013-09-12 16:21:50 -0700 | [diff] [blame] | 224 | /** |
Jeff Thompson | 86e1d75 | 2013-09-17 17:22:38 -0700 | [diff] [blame] | 225 | * Sign data packet based on the certificate name. |
Jeff Thompson | 4147191 | 2013-09-12 16:21:50 -0700 | [diff] [blame] | 226 | * Note: the caller must make sure the timestamp in data is correct, for example with |
| 227 | * data.getMetaInfo().setTimestampMilliseconds(time(NULL) * 1000.0). |
| 228 | * @param data The Data object to sign and update its signature. |
| 229 | * @param certificateName The Name identifying the certificate which identifies the signing key. |
| 230 | * @param wireFormat The WireFormat for calling encodeData, or WireFormat::getDefaultWireFormat() if omitted. |
| 231 | */ |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 232 | void |
Jeff Thompson | 86e1d75 | 2013-09-17 17:22:38 -0700 | [diff] [blame] | 233 | signByCertificate(Data& data, const Name& certificateName, WireFormat& wireFormat = *WireFormat::getDefaultWireFormat()); |
Jeff Thompson | 418b05a | 2013-10-22 17:48:54 -0700 | [diff] [blame] | 234 | |
| 235 | /** |
| 236 | * Generate a self-signed certificate for a public key. |
| 237 | * @param keyName The name of the public key. |
| 238 | * @return The generated certificate. |
| 239 | */ |
| 240 | ptr_lib::shared_ptr<IdentityCertificate> |
| 241 | selfSign(const Name& keyName); |
Jeff Thompson | 86e1d75 | 2013-09-17 17:22:38 -0700 | [diff] [blame] | 242 | |
| 243 | private: |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 244 | /** |
| 245 | * Generate a key pair for the specified identity. |
| 246 | * @param identityName The name of the specified identity. |
| 247 | * @param isKsk true for generating a Key-Signing-Key (KSK), false for a Data-Signing-Key (KSK). |
| 248 | * @param keyType The type of the key pair, e.g. KEY_TYPE_RSA. |
| 249 | * @param keySize The size of the key pair. |
| 250 | * @return The name of the generated key. |
| 251 | */ |
| 252 | Name |
| 253 | generateKeyPair(const Name& identityName, bool isKsk = false, KeyType keyType = KEY_TYPE_RSA, int keySize = 2048); |
| 254 | |
Jeff Thompson | 418b05a | 2013-10-22 17:48:54 -0700 | [diff] [blame] | 255 | static Name |
| 256 | getKeyNameFromCertificatePrefix(const Name& certificatePrefix); |
Jeff Thompson | e7e069b | 2013-09-27 15:48:48 -0700 | [diff] [blame] | 257 | |
Jeff Thompson | 9296f0c | 2013-09-23 18:10:27 -0700 | [diff] [blame] | 258 | ptr_lib::shared_ptr<IdentityStorage> identityStorage_; |
Jeff Thompson | 86e1d75 | 2013-09-17 17:22:38 -0700 | [diff] [blame] | 259 | ptr_lib::shared_ptr<PrivateKeyStorage> privateKeyStorage_; |
Jeff Thompson | 4147191 | 2013-09-12 16:21:50 -0700 | [diff] [blame] | 260 | }; |
| 261 | |
| 262 | } |
| 263 | |
| 264 | #endif |