Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /** |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 3 | * Copyright (c) 2013-2014, Regents of the University of California. |
| 4 | * All rights reserved. |
| 5 | * |
| 6 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 7 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
| 8 | * |
| 9 | * This file licensed under New BSD License. See COPYING for detailed information about |
| 10 | * ndn-cxx library copyright, permissions, and redistribution restrictions. |
| 11 | * |
| 12 | * @author Yingdi Yu <http://irl.cs.ucla.edu/~yingdi/> |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #include "sec-tpm.hpp" |
| 16 | |
Alexander Afanasyev | 258ec2b | 2014-05-14 16:15:37 -0700 | [diff] [blame^] | 17 | #include "../encoding/oid.hpp" |
| 18 | #include "../encoding/buffer-stream.hpp" |
Junxiao Shi | 482ccc5 | 2014-03-31 13:05:24 -0700 | [diff] [blame] | 19 | #include "cryptopp.hpp" |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 20 | |
| 21 | using namespace std; |
| 22 | |
| 23 | namespace ndn { |
| 24 | |
| 25 | ConstBufferPtr |
Yingdi Yu | 5e96e00 | 2014-04-23 18:32:15 -0700 | [diff] [blame] | 26 | SecTpm::exportPrivateKeyPkcs5FromTpm(const Name& keyName, const string& passwordStr) |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 27 | { |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 28 | using namespace CryptoPP; |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 29 | |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 30 | uint8_t salt[8] = {0}; |
| 31 | uint8_t iv[8] = {0}; |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 32 | |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 33 | // derive key |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 34 | if (!generateRandomBlock(salt, 8) || !generateRandomBlock(iv, 8)) |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 35 | throw Error("Cannot generate salt or iv"); |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 36 | |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 37 | uint32_t iterationCount = 2048; |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 38 | |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 39 | PKCS5_PBKDF2_HMAC<SHA1> keyGenerator; |
| 40 | size_t derivedLen = 24; //For DES-EDE3-CBC-PAD |
| 41 | byte derived[24] = {0}; |
| 42 | byte purpose = 0; |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 43 | |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 44 | try |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 45 | { |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 46 | keyGenerator.DeriveKey(derived, derivedLen, purpose, |
| 47 | reinterpret_cast<const byte*>(passwordStr.c_str()), passwordStr.size(), |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 48 | salt, 8, iterationCount); |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 49 | } |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 50 | catch (CryptoPP::Exception& e) |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 51 | { |
| 52 | throw Error("Cannot derived the encryption key"); |
| 53 | } |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 54 | |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 55 | //encrypt |
| 56 | CBC_Mode< DES_EDE3 >::Encryption e; |
| 57 | e.SetKeyWithIV(derived, derivedLen, iv); |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 58 | |
Yingdi Yu | 5e96e00 | 2014-04-23 18:32:15 -0700 | [diff] [blame] | 59 | ConstBufferPtr pkcs8PrivateKey = exportPrivateKeyPkcs8FromTpm(keyName); |
| 60 | if (!static_cast<bool>(pkcs8PrivateKey)) |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 61 | throw Error("Cannot export the private key, #1"); |
| 62 | |
| 63 | OBufferStream encryptedOs; |
| 64 | try |
| 65 | { |
Yingdi Yu | 5e96e00 | 2014-04-23 18:32:15 -0700 | [diff] [blame] | 66 | StringSource stringSource(pkcs8PrivateKey->buf(), pkcs8PrivateKey->size(), true, |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 67 | new StreamTransformationFilter(e, new FileSink(encryptedOs))); |
| 68 | } |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 69 | catch (CryptoPP::Exception& e) |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 70 | { |
| 71 | throw Error("Cannot export the private key, #2"); |
| 72 | } |
| 73 | |
| 74 | //encode |
| 75 | OID pbes2Id("1.2.840.113549.1.5.13"); |
| 76 | OID pbkdf2Id("1.2.840.113549.1.5.12"); |
| 77 | OID pbes2encsId("1.2.840.113549.3.7"); |
| 78 | |
| 79 | OBufferStream pkcs8Os; |
| 80 | try |
| 81 | { |
| 82 | FileSink sink(pkcs8Os); |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 83 | |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 84 | // EncryptedPrivateKeyInfo ::= SEQUENCE { |
| 85 | // encryptionAlgorithm EncryptionAlgorithmIdentifier, |
| 86 | // encryptedData OCTET STRING } |
| 87 | DERSequenceEncoder encryptedPrivateKeyInfo(sink); |
| 88 | { |
| 89 | // EncryptionAlgorithmIdentifier ::= SEQUENCE { |
| 90 | // algorithm OBJECT IDENTIFIER {{PBES2-id}}, |
| 91 | // parameters SEQUENCE {{PBES2-params}} } |
| 92 | DERSequenceEncoder encryptionAlgorithm(encryptedPrivateKeyInfo); |
| 93 | { |
| 94 | pbes2Id.encode(encryptionAlgorithm); |
| 95 | // PBES2-params ::= SEQUENCE { |
| 96 | // keyDerivationFunc AlgorithmIdentifier {{PBES2-KDFs}}, |
| 97 | // encryptionScheme AlgorithmIdentifier {{PBES2-Encs}} } |
| 98 | DERSequenceEncoder pbes2Params(encryptionAlgorithm); |
| 99 | { |
| 100 | // AlgorithmIdentifier ::= SEQUENCE { |
| 101 | // algorithm OBJECT IDENTIFIER {{PBKDF2-id}}, |
| 102 | // parameters SEQUENCE {{PBKDF2-params}} } |
| 103 | DERSequenceEncoder pbes2KDFs(pbes2Params); |
| 104 | { |
| 105 | pbkdf2Id.encode(pbes2KDFs); |
| 106 | // AlgorithmIdentifier ::= SEQUENCE { |
| 107 | // salt OCTET STRING, |
| 108 | // iterationCount INTEGER (1..MAX), |
| 109 | // keyLength INTEGER (1..MAX) OPTIONAL, |
| 110 | // prf AlgorithmIdentifier {{PBKDF2-PRFs}} DEFAULT algid-hmacWithSHA1 } |
| 111 | DERSequenceEncoder pbkdf2Params(pbes2KDFs); |
| 112 | { |
| 113 | DEREncodeOctetString(pbkdf2Params, salt, 8); |
| 114 | DEREncodeUnsigned<uint32_t>(pbkdf2Params, iterationCount, INTEGER); |
| 115 | } |
| 116 | pbkdf2Params.MessageEnd(); |
| 117 | } |
| 118 | pbes2KDFs.MessageEnd(); |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 119 | |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 120 | // AlgorithmIdentifier ::= SEQUENCE { |
| 121 | // algorithm OBJECT IDENTIFIER {{DES-EDE3-CBC-PAD}}, |
| 122 | // parameters OCTET STRING} {{iv}} } |
| 123 | DERSequenceEncoder pbes2Encs(pbes2Params); |
| 124 | { |
| 125 | pbes2encsId.encode(pbes2Encs); |
| 126 | DEREncodeOctetString(pbes2Encs, iv, 8); |
| 127 | } |
| 128 | pbes2Encs.MessageEnd(); |
| 129 | } |
| 130 | pbes2Params.MessageEnd(); |
| 131 | } |
| 132 | encryptionAlgorithm.MessageEnd(); |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 133 | |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 134 | DEREncodeOctetString(encryptedPrivateKeyInfo, |
| 135 | encryptedOs.buf()->buf(), encryptedOs.buf()->size()); |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 136 | } |
| 137 | encryptedPrivateKeyInfo.MessageEnd(); |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 138 | |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 139 | return pkcs8Os.buf(); |
| 140 | } |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 141 | catch (CryptoPP::Exception& e) |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 142 | { |
| 143 | throw Error("Cannot export the private key, #3"); |
| 144 | } |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | bool |
Yingdi Yu | 5e96e00 | 2014-04-23 18:32:15 -0700 | [diff] [blame] | 148 | SecTpm::importPrivateKeyPkcs5IntoTpm(const Name& keyName, |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 149 | const uint8_t* buf, size_t size, |
| 150 | const string& passwordStr) |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 151 | { |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 152 | using namespace CryptoPP; |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 153 | |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 154 | OID pbes2Id; |
| 155 | OID pbkdf2Id; |
| 156 | SecByteBlock saltBlock; |
| 157 | uint32_t iterationCount; |
| 158 | OID pbes2encsId; |
| 159 | SecByteBlock ivBlock; |
| 160 | SecByteBlock encryptedDataBlock; |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 161 | |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 162 | try |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 163 | { |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 164 | // decode some decoding processes are not necessary for now, |
| 165 | // because we assume only one encryption scheme. |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 166 | StringSource source(buf, size, true); |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 167 | |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 168 | // EncryptedPrivateKeyInfo ::= SEQUENCE { |
| 169 | // encryptionAlgorithm EncryptionAlgorithmIdentifier, |
| 170 | // encryptedData OCTET STRING } |
| 171 | BERSequenceDecoder encryptedPrivateKeyInfo(source); |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 172 | { |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 173 | // EncryptionAlgorithmIdentifier ::= SEQUENCE { |
| 174 | // algorithm OBJECT IDENTIFIER {{PBES2-id}}, |
| 175 | // parameters SEQUENCE {{PBES2-params}} } |
| 176 | BERSequenceDecoder encryptionAlgorithm(encryptedPrivateKeyInfo); |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 177 | { |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 178 | pbes2Id.decode(encryptionAlgorithm); |
| 179 | // PBES2-params ::= SEQUENCE { |
| 180 | // keyDerivationFunc AlgorithmIdentifier {{PBES2-KDFs}}, |
| 181 | // encryptionScheme AlgorithmIdentifier {{PBES2-Encs}} } |
| 182 | BERSequenceDecoder pbes2Params(encryptionAlgorithm); |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 183 | { |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 184 | // AlgorithmIdentifier ::= SEQUENCE { |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 185 | // algorithm OBJECT IDENTIFIER {{PBKDF2-id}}, |
| 186 | // parameters SEQUENCE {{PBKDF2-params}} } |
| 187 | BERSequenceDecoder pbes2KDFs(pbes2Params); |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 188 | { |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 189 | pbkdf2Id.decode(pbes2KDFs); |
| 190 | // AlgorithmIdentifier ::= SEQUENCE { |
| 191 | // salt OCTET STRING, |
| 192 | // iterationCount INTEGER (1..MAX), |
| 193 | // keyLength INTEGER (1..MAX) OPTIONAL, |
| 194 | // prf AlgorithmIdentifier {{PBKDF2-PRFs}} DEFAULT algid-hmacWithSHA1 } |
| 195 | BERSequenceDecoder pbkdf2Params(pbes2KDFs); |
| 196 | { |
| 197 | BERDecodeOctetString(pbkdf2Params, saltBlock); |
| 198 | BERDecodeUnsigned<uint32_t>(pbkdf2Params, iterationCount, INTEGER); |
| 199 | } |
| 200 | pbkdf2Params.MessageEnd(); |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 201 | } |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 202 | pbes2KDFs.MessageEnd(); |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 203 | |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 204 | // AlgorithmIdentifier ::= SEQUENCE { |
| 205 | // algorithm OBJECT IDENTIFIER {{DES-EDE3-CBC-PAD}}, |
| 206 | // parameters OCTET STRING} {{iv}} } |
| 207 | BERSequenceDecoder pbes2Encs(pbes2Params); |
| 208 | { |
| 209 | pbes2encsId.decode(pbes2Encs); |
| 210 | BERDecodeOctetString(pbes2Encs, ivBlock); |
| 211 | } |
| 212 | pbes2Encs.MessageEnd(); |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 213 | } |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 214 | pbes2Params.MessageEnd(); |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 215 | } |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 216 | encryptionAlgorithm.MessageEnd(); |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 217 | |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 218 | BERDecodeOctetString(encryptedPrivateKeyInfo, encryptedDataBlock); |
| 219 | } |
| 220 | encryptedPrivateKeyInfo.MessageEnd(); |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 221 | } |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 222 | catch (CryptoPP::Exception& e) |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 223 | { |
| 224 | return false; |
| 225 | } |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 226 | |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 227 | |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 228 | PKCS5_PBKDF2_HMAC<SHA1> keyGenerator; |
| 229 | size_t derivedLen = 24; //For DES-EDE3-CBC-PAD |
| 230 | byte derived[24] = {0}; |
| 231 | byte purpose = 0; |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 232 | |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 233 | try |
| 234 | { |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 235 | keyGenerator.DeriveKey(derived, derivedLen, |
| 236 | purpose, |
| 237 | reinterpret_cast<const byte*>(passwordStr.c_str()), passwordStr.size(), |
| 238 | saltBlock.BytePtr(), saltBlock.size(), |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 239 | iterationCount); |
| 240 | } |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 241 | catch (CryptoPP::Exception& e) |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 242 | { |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 243 | return false; |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 244 | } |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 245 | |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 246 | //decrypt |
| 247 | CBC_Mode< DES_EDE3 >::Decryption d; |
| 248 | d.SetKeyWithIV(derived, derivedLen, ivBlock.BytePtr()); |
| 249 | |
| 250 | OBufferStream privateKeyOs; |
| 251 | try |
| 252 | { |
| 253 | StringSource encryptedSource(encryptedDataBlock.BytePtr(), encryptedDataBlock.size(), true, |
| 254 | new StreamTransformationFilter(d, new FileSink(privateKeyOs))); |
| 255 | } |
| 256 | catch (CryptoPP::Exception& e) |
| 257 | { |
| 258 | return false; |
| 259 | } |
| 260 | |
Yingdi Yu | 5e96e00 | 2014-04-23 18:32:15 -0700 | [diff] [blame] | 261 | if (!importPrivateKeyPkcs8IntoTpm(keyName, |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 262 | privateKeyOs.buf()->buf(), privateKeyOs.buf()->size())) |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 263 | return false; |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 264 | |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 265 | //derive public key |
| 266 | OBufferStream publicKeyOs; |
| 267 | |
| 268 | try |
| 269 | { |
| 270 | RSA::PrivateKey privateKey; |
| 271 | privateKey.Load(StringStore(privateKeyOs.buf()->buf(), privateKeyOs.buf()->size()).Ref()); |
| 272 | RSAFunction publicKey(privateKey); |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 273 | |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 274 | FileSink publicKeySink(publicKeyOs); |
| 275 | publicKey.DEREncode(publicKeySink); |
| 276 | publicKeySink.MessageEnd(); |
| 277 | } |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 278 | catch (CryptoPP::Exception& e) |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 279 | { |
| 280 | return false; |
| 281 | } |
| 282 | |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 283 | if (!importPublicKeyPkcs1IntoTpm(keyName, publicKeyOs.buf()->buf(), publicKeyOs.buf()->size())) |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 284 | return false; |
Alexander Afanasyev | fdbfc6d | 2014-04-14 15:12:11 -0700 | [diff] [blame] | 285 | |
Yingdi Yu | 2e57a58 | 2014-02-20 23:34:43 -0800 | [diff] [blame] | 286 | return true; |
Yingdi Yu | 8dceb1d | 2014-02-18 12:45:10 -0800 | [diff] [blame] | 287 | } |
| 288 | |
| 289 | |
Yingdi Yu | fc40d87 | 2014-02-18 12:56:04 -0800 | [diff] [blame] | 290 | } // namespace ndn |