Alexander Afanasyev | 1b58a03 | 2017-01-04 14:00:47 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2013-2018 Regents of the University of California. |
Alexander Afanasyev | 1b58a03 | 2017-01-04 14:00:47 -0800 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 6 | * |
| 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. |
| 20 | */ |
| 21 | |
| 22 | #include "command-interest-signer.hpp" |
| 23 | #include "../util/random.hpp" |
| 24 | |
| 25 | namespace ndn { |
| 26 | namespace security { |
| 27 | |
Alexander Afanasyev | 3e2c3a0 | 2017-01-19 13:55:56 -0800 | [diff] [blame] | 28 | CommandInterestPreparer::CommandInterestPreparer() |
| 29 | : m_lastUsedTimestamp(0) |
| 30 | { |
| 31 | } |
| 32 | |
Alexander Afanasyev | 1b58a03 | 2017-01-04 14:00:47 -0800 | [diff] [blame] | 33 | Name |
| 34 | CommandInterestPreparer::prepareCommandInterestName(Name name) |
| 35 | { |
| 36 | time::milliseconds timestamp = time::toUnixTimestamp(time::system_clock::now()); |
| 37 | if (timestamp <= m_lastUsedTimestamp) { |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 38 | timestamp = m_lastUsedTimestamp + 1_ms; |
Alexander Afanasyev | 1b58a03 | 2017-01-04 14:00:47 -0800 | [diff] [blame] | 39 | } |
| 40 | m_lastUsedTimestamp = timestamp; |
| 41 | |
| 42 | name |
| 43 | .append(name::Component::fromNumber(timestamp.count())) |
| 44 | .append(name::Component::fromNumber(random::generateWord64())) // nonce |
| 45 | ; |
| 46 | |
| 47 | return name; |
| 48 | } |
| 49 | |
Alexander Afanasyev | 80782e0 | 2017-01-04 13:16:54 -0800 | [diff] [blame] | 50 | CommandInterestSigner::CommandInterestSigner(KeyChain& keyChain) |
Alexander Afanasyev | 1b58a03 | 2017-01-04 14:00:47 -0800 | [diff] [blame] | 51 | : m_keyChain(keyChain) |
| 52 | { |
| 53 | } |
| 54 | |
| 55 | Interest |
| 56 | CommandInterestSigner::makeCommandInterest(const Name& name, const SigningInfo& params) |
| 57 | { |
| 58 | Interest commandInterest(prepareCommandInterestName(name)); |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame^] | 59 | commandInterest.setCanBePrefix(false); |
Alexander Afanasyev | 1b58a03 | 2017-01-04 14:00:47 -0800 | [diff] [blame] | 60 | m_keyChain.sign(commandInterest, params); |
| 61 | return commandInterest; |
| 62 | } |
| 63 | |
| 64 | } // namespace security |
| 65 | } // namespace ndn |