Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 2 | /** |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2014 Regents of the University of California. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 6 | * |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 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. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 20 | * |
| 21 | * @author Yingdi Yu <http://irl.cs.ucla.edu/~yingdi/> |
| 22 | * @author Jeff Thompson <jefft0@remap.ucla.edu> |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 23 | */ |
| 24 | |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 25 | #include "common.hpp" |
| 26 | |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 27 | #include "validator.hpp" |
Yingdi Yu | 2115716 | 2014-02-28 13:02:34 -0800 | [diff] [blame] | 28 | #include "../util/crypto.hpp" |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 29 | |
Junxiao Shi | 482ccc5 | 2014-03-31 13:05:24 -0700 | [diff] [blame] | 30 | #include "cryptopp.hpp" |
Yingdi Yu | 2115716 | 2014-02-28 13:02:34 -0800 | [diff] [blame] | 31 | |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 32 | namespace ndn { |
| 33 | |
Yingdi Yu | c8f883c | 2014-06-20 23:25:22 -0700 | [diff] [blame] | 34 | static OID SECP256R1("1.2.840.10045.3.1.7"); |
| 35 | static OID SECP384R1("1.3.132.0.34"); |
| 36 | |
Yingdi Yu | 96e6406 | 2014-04-15 19:57:33 -0700 | [diff] [blame] | 37 | Validator::Validator() |
| 38 | : m_hasFace(false) |
| 39 | , m_face(*static_cast<Face*>(0)) |
| 40 | { |
| 41 | } |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 42 | |
Yingdi Yu | 96e6406 | 2014-04-15 19:57:33 -0700 | [diff] [blame] | 43 | Validator::Validator(Face& face) |
| 44 | : m_hasFace(true) |
| 45 | , m_face(face) |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 46 | { |
| 47 | } |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 48 | |
| 49 | void |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 50 | Validator::validate(const Interest& interest, |
| 51 | const OnInterestValidated& onValidated, |
| 52 | const OnInterestValidationFailed& onValidationFailed, |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 53 | int nSteps) |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 54 | { |
Yingdi Yu | c8f883c | 2014-06-20 23:25:22 -0700 | [diff] [blame] | 55 | std::vector<shared_ptr<ValidationRequest> > nextSteps; |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 56 | checkPolicy(interest, nSteps, onValidated, onValidationFailed, nextSteps); |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 57 | |
Yingdi Yu | d9006e7 | 2014-06-23 19:10:44 -0700 | [diff] [blame] | 58 | if (nextSteps.empty()) |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 59 | { |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 60 | // If there is no nextStep, |
| 61 | // that means InterestPolicy has already been able to verify the Interest. |
| 62 | // No more further processes. |
Yingdi Yu | d9006e7 | 2014-06-23 19:10:44 -0700 | [diff] [blame] | 63 | return; |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 64 | } |
Yingdi Yu | d9006e7 | 2014-06-23 19:10:44 -0700 | [diff] [blame] | 65 | |
| 66 | if (!m_hasFace) |
| 67 | { |
| 68 | onValidationFailed(interest.shared_from_this(), |
| 69 | "Require more information to validate the interest!"); |
| 70 | return; |
| 71 | } |
| 72 | |
| 73 | OnFailure onFailure = bind(onValidationFailed, interest.shared_from_this(), _1); |
| 74 | afterCheckPolicy(nextSteps, onFailure); |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | void |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 78 | Validator::validate(const Data& data, |
| 79 | const OnDataValidated& onValidated, |
| 80 | const OnDataValidationFailed& onValidationFailed, |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 81 | int nSteps) |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 82 | { |
Yingdi Yu | c8f883c | 2014-06-20 23:25:22 -0700 | [diff] [blame] | 83 | std::vector<shared_ptr<ValidationRequest> > nextSteps; |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 84 | checkPolicy(data, nSteps, onValidated, onValidationFailed, nextSteps); |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 85 | |
Yingdi Yu | d9006e7 | 2014-06-23 19:10:44 -0700 | [diff] [blame] | 86 | if (nextSteps.empty()) |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 87 | { |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 88 | // If there is no nextStep, |
| 89 | // that means Data Policy has already been able to verify the Interest. |
| 90 | // No more further processes. |
Yingdi Yu | d9006e7 | 2014-06-23 19:10:44 -0700 | [diff] [blame] | 91 | return; |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 92 | } |
Yingdi Yu | d9006e7 | 2014-06-23 19:10:44 -0700 | [diff] [blame] | 93 | |
| 94 | if (!m_hasFace) |
| 95 | { |
| 96 | onValidationFailed(data.shared_from_this(), |
| 97 | "Require more information to validate the data!"); |
| 98 | return; |
| 99 | } |
| 100 | |
| 101 | OnFailure onFailure = bind(onValidationFailed, data.shared_from_this(), _1); |
| 102 | afterCheckPolicy(nextSteps, onFailure); |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | void |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 106 | Validator::onData(const Interest& interest, |
| 107 | const Data& data, |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 108 | const shared_ptr<ValidationRequest>& nextStep) |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 109 | { |
Yingdi Yu | d9006e7 | 2014-06-23 19:10:44 -0700 | [diff] [blame] | 110 | shared_ptr<const Data> certificateData = preCertificateValidation(data); |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 111 | |
Yingdi Yu | d9006e7 | 2014-06-23 19:10:44 -0700 | [diff] [blame] | 112 | if (!static_cast<bool>(certificateData)) |
| 113 | return nextStep->m_onDataValidationFailed(data.shared_from_this(), |
| 114 | "Cannot decode cert: " + data.getName().toUri()); |
| 115 | |
| 116 | validate(*certificateData, |
| 117 | nextStep->m_onDataValidated, nextStep->m_onDataValidationFailed, |
| 118 | nextStep->m_nSteps); |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | bool |
| 122 | Validator::verifySignature(const Data& data, const PublicKey& key) |
| 123 | { |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 124 | if (!data.getSignature().hasKeyLocator()) |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 125 | return false; |
| 126 | |
| 127 | return verifySignature(data.wireEncode().value(), |
| 128 | data.wireEncode().value_size() - |
| 129 | data.getSignature().getValue().size(), |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 130 | data.getSignature(), key); |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | bool |
Yingdi Yu | 2115716 | 2014-02-28 13:02:34 -0800 | [diff] [blame] | 134 | Validator::verifySignature(const Interest& interest, const PublicKey& key) |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 135 | { |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 136 | const Name& interestName = interest.getName(); |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 137 | |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 138 | if (interestName.size() < 2) |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 139 | return false; |
| 140 | |
Yingdi Yu | 40587c0 | 2014-02-21 16:40:48 -0800 | [diff] [blame] | 141 | try |
| 142 | { |
| 143 | const Block& nameBlock = interestName.wireEncode(); |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 144 | |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 145 | Signature sig(interestName[-2].blockFromValue(), |
Yingdi Yu | 40587c0 | 2014-02-21 16:40:48 -0800 | [diff] [blame] | 146 | interestName[-1].blockFromValue()); |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 147 | |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 148 | if (!sig.hasKeyLocator()) |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 149 | return false; |
Yingdi Yu | c8f883c | 2014-06-20 23:25:22 -0700 | [diff] [blame] | 150 | |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 151 | return verifySignature(nameBlock.value(), |
| 152 | nameBlock.value_size() - interestName[-1].size(), |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 153 | sig, key); |
Yingdi Yu | 40587c0 | 2014-02-21 16:40:48 -0800 | [diff] [blame] | 154 | } |
Alexander Afanasyev | 2a7f720 | 2014-04-23 14:25:29 -0700 | [diff] [blame] | 155 | catch (Block::Error& e) |
Yingdi Yu | 40587c0 | 2014-02-21 16:40:48 -0800 | [diff] [blame] | 156 | { |
Yingdi Yu | 40587c0 | 2014-02-21 16:40:48 -0800 | [diff] [blame] | 157 | return false; |
| 158 | } |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | bool |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 162 | Validator::verifySignature(const uint8_t* buf, |
| 163 | const size_t size, |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 164 | const Signature& sig, |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 165 | const PublicKey& key) |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 166 | { |
Yingdi Yu | 40587c0 | 2014-02-21 16:40:48 -0800 | [diff] [blame] | 167 | try |
| 168 | { |
| 169 | using namespace CryptoPP; |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 170 | |
Yingdi Yu | c8f883c | 2014-06-20 23:25:22 -0700 | [diff] [blame] | 171 | switch (sig.getType()) |
| 172 | { |
Steve DiBenedetto | 54ce668 | 2014-07-22 13:22:57 -0600 | [diff] [blame^] | 173 | case tlv::SignatureSha256WithRsa: |
Yingdi Yu | c8f883c | 2014-06-20 23:25:22 -0700 | [diff] [blame] | 174 | { |
| 175 | if (key.getKeyType() != KEY_TYPE_RSA) |
| 176 | return false; |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 177 | |
Yingdi Yu | c8f883c | 2014-06-20 23:25:22 -0700 | [diff] [blame] | 178 | RSA::PublicKey publicKey; |
| 179 | ByteQueue queue; |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 180 | |
Yingdi Yu | c8f883c | 2014-06-20 23:25:22 -0700 | [diff] [blame] | 181 | queue.Put(reinterpret_cast<const byte*>(key.get().buf()), key.get().size()); |
| 182 | publicKey.Load(queue); |
| 183 | |
| 184 | RSASS<PKCS1v15, SHA256>::Verifier verifier(publicKey); |
| 185 | return verifier.VerifyMessage(buf, size, |
| 186 | sig.getValue().value(), sig.getValue().value_size()); |
| 187 | } |
Steve DiBenedetto | 54ce668 | 2014-07-22 13:22:57 -0600 | [diff] [blame^] | 188 | case tlv::SignatureSha256WithEcdsa: |
Yingdi Yu | c8f883c | 2014-06-20 23:25:22 -0700 | [diff] [blame] | 189 | { |
| 190 | if (key.getKeyType() != KEY_TYPE_ECDSA) |
| 191 | return false; |
| 192 | |
| 193 | ECDSA<ECP, SHA256>::PublicKey publicKey; |
| 194 | ByteQueue queue; |
| 195 | |
| 196 | queue.Put(reinterpret_cast<const byte*>(key.get().buf()), key.get().size()); |
| 197 | publicKey.Load(queue); |
| 198 | |
| 199 | ECDSA<ECP, SHA256>::Verifier verifier(publicKey); |
| 200 | |
| 201 | uint32_t length = 0; |
| 202 | StringSource src(key.get().buf(), key.get().size(), true); |
| 203 | BERSequenceDecoder subjectPublicKeyInfo(src); |
| 204 | { |
| 205 | BERSequenceDecoder algorithmInfo(subjectPublicKeyInfo); |
| 206 | { |
| 207 | OID algorithm; |
| 208 | algorithm.decode(algorithmInfo); |
| 209 | |
| 210 | OID curveId; |
| 211 | curveId.decode(algorithmInfo); |
| 212 | |
| 213 | if (curveId == SECP256R1) |
| 214 | length = 256; |
| 215 | else if (curveId == SECP384R1) |
| 216 | length = 384; |
| 217 | else |
| 218 | return false; |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | switch (length) |
| 223 | { |
| 224 | case 256: |
| 225 | { |
| 226 | uint8_t buffer[64]; |
| 227 | size_t usedSize = DSAConvertSignatureFormat(buffer, 64, DSA_P1363, |
| 228 | sig.getValue().value(), |
| 229 | sig.getValue().value_size(), |
| 230 | DSA_DER); |
| 231 | return verifier.VerifyMessage(buf, size, buffer, usedSize); |
| 232 | } |
| 233 | case 384: |
| 234 | { |
| 235 | uint8_t buffer[96]; |
| 236 | size_t usedSize = DSAConvertSignatureFormat(buffer, 96, DSA_P1363, |
| 237 | sig.getValue().value(), |
| 238 | sig.getValue().value_size(), |
| 239 | DSA_DER); |
| 240 | return verifier.VerifyMessage(buf, size, buffer, usedSize); |
| 241 | } |
| 242 | default: |
| 243 | return false; |
| 244 | } |
| 245 | } |
| 246 | default: |
| 247 | // Unsupported sig type |
| 248 | return false; |
| 249 | } |
Yingdi Yu | 40587c0 | 2014-02-21 16:40:48 -0800 | [diff] [blame] | 250 | } |
Alexander Afanasyev | 2a7f720 | 2014-04-23 14:25:29 -0700 | [diff] [blame] | 251 | catch (CryptoPP::Exception& e) |
Yingdi Yu | 40587c0 | 2014-02-21 16:40:48 -0800 | [diff] [blame] | 252 | { |
Yingdi Yu | 40587c0 | 2014-02-21 16:40:48 -0800 | [diff] [blame] | 253 | return false; |
| 254 | } |
Yingdi Yu | 6ac9798 | 2014-01-30 14:49:21 -0800 | [diff] [blame] | 255 | } |
| 256 | |
Yingdi Yu | 2115716 | 2014-02-28 13:02:34 -0800 | [diff] [blame] | 257 | bool |
Yingdi Yu | bf6a281 | 2014-06-17 15:32:11 -0700 | [diff] [blame] | 258 | Validator::verifySignature(const uint8_t* buf, const size_t size, const DigestSha256& sig) |
Yingdi Yu | 2115716 | 2014-02-28 13:02:34 -0800 | [diff] [blame] | 259 | { |
| 260 | try |
| 261 | { |
| 262 | ConstBufferPtr buffer = crypto::sha256(buf, size); |
| 263 | const Block& sigValue = sig.getValue(); |
| 264 | |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 265 | if (static_cast<bool>(buffer) && |
| 266 | buffer->size() == sigValue.value_size() && |
| 267 | buffer->size() == crypto::SHA256_DIGEST_SIZE) |
Yingdi Yu | 2115716 | 2014-02-28 13:02:34 -0800 | [diff] [blame] | 268 | { |
| 269 | |
| 270 | const uint8_t* p1 = buffer->buf(); |
| 271 | const uint8_t* p2 = sigValue.value(); |
| 272 | |
Yingdi Yu | 48e8c0c | 2014-03-19 12:01:55 -0700 | [diff] [blame] | 273 | return 0 == memcmp(p1, p2, crypto::SHA256_DIGEST_SIZE); |
Yingdi Yu | 2115716 | 2014-02-28 13:02:34 -0800 | [diff] [blame] | 274 | } |
| 275 | else |
| 276 | return false; |
| 277 | } |
Alexander Afanasyev | 2a7f720 | 2014-04-23 14:25:29 -0700 | [diff] [blame] | 278 | catch (CryptoPP::Exception& e) |
Yingdi Yu | 2115716 | 2014-02-28 13:02:34 -0800 | [diff] [blame] | 279 | { |
Yingdi Yu | 2115716 | 2014-02-28 13:02:34 -0800 | [diff] [blame] | 280 | return false; |
| 281 | } |
| 282 | } |
| 283 | |
Yingdi Yu | d9006e7 | 2014-06-23 19:10:44 -0700 | [diff] [blame] | 284 | void |
| 285 | Validator::onTimeout(const Interest& interest, |
| 286 | int remainingRetries, |
| 287 | const OnFailure& onFailure, |
| 288 | const shared_ptr<ValidationRequest>& validationRequest) |
| 289 | { |
| 290 | if (remainingRetries > 0) |
| 291 | // Issue the same expressInterest except decrement nRetrials. |
| 292 | m_face.expressInterest(interest, |
| 293 | bind(&Validator::onData, this, _1, _2, validationRequest), |
| 294 | bind(&Validator::onTimeout, this, _1, |
| 295 | remainingRetries - 1, onFailure, validationRequest)); |
| 296 | else |
| 297 | onFailure("Cannot fetch cert: " + interest.getName().toUri()); |
| 298 | } |
| 299 | |
| 300 | |
| 301 | void |
| 302 | Validator::afterCheckPolicy(const std::vector<shared_ptr<ValidationRequest> >& nextSteps, |
| 303 | const OnFailure& onFailure) |
| 304 | { |
| 305 | for (std::vector<shared_ptr<ValidationRequest> >::const_iterator it = nextSteps.begin(); |
| 306 | it != nextSteps.end(); it++) |
| 307 | { |
| 308 | m_face.expressInterest((*it)->m_interest, |
| 309 | bind(&Validator::onData, this, _1, _2, *it), |
| 310 | bind(&Validator::onTimeout, |
| 311 | this, _1, (*it)->m_nRetries, |
| 312 | onFailure, |
| 313 | *it)); |
| 314 | } |
| 315 | } |
| 316 | |
Yingdi Yu | fc40d87 | 2014-02-18 12:56:04 -0800 | [diff] [blame] | 317 | } // namespace ndn |