Zhiyi Zhang | 65ba932 | 2017-01-19 14:15:03 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 3 | * Copyright (c) 2017-2019, Regents of the University of California. |
Zhiyi Zhang | 65ba932 | 2017-01-19 14:15:03 -0800 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndncert, a certificate management system based on NDN. |
| 6 | * |
| 7 | * ndncert is free software: you can redistribute it and/or modify it under the terms |
| 8 | * of the GNU General Public License as published by the Free Software Foundation, either |
| 9 | * version 3 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * ndncert 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 General Public License for more details. |
| 14 | * |
| 15 | * You should have received copies of the GNU General Public License along with |
| 16 | * ndncert, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 17 | * |
| 18 | * See AUTHORS.md for complete list of ndncert authors and contributors. |
| 19 | */ |
| 20 | |
| 21 | #include "challenge-module.hpp" |
Junxiao Shi | 7c06803 | 2017-05-28 13:40:47 +0000 | [diff] [blame] | 22 | #include <ndn-cxx/util/random.hpp> |
Zhiyi Zhang | 65ba932 | 2017-01-19 14:15:03 -0800 | [diff] [blame] | 23 | |
| 24 | namespace ndn { |
| 25 | namespace ndncert { |
| 26 | |
Zhiyi Zhang | 65ba932 | 2017-01-19 14:15:03 -0800 | [diff] [blame] | 27 | ChallengeModule::ChallengeModule(const std::string& uniqueType) |
| 28 | : CHALLENGE_TYPE(uniqueType) |
| 29 | { |
| 30 | } |
| 31 | |
Davide Pesavento | 0899478 | 2018-01-22 12:13:41 -0500 | [diff] [blame] | 32 | ChallengeModule::~ChallengeModule() = default; |
| 33 | |
Zhiyi Zhang | 65ba932 | 2017-01-19 14:15:03 -0800 | [diff] [blame] | 34 | unique_ptr<ChallengeModule> |
| 35 | ChallengeModule::createChallengeModule(const std::string& canonicalName) |
| 36 | { |
| 37 | ChallengeFactory& factory = getFactory(); |
| 38 | auto i = factory.find(canonicalName); |
| 39 | return i == factory.end() ? nullptr : i->second(); |
| 40 | } |
| 41 | |
Zhiyi Zhang | 65ba932 | 2017-01-19 14:15:03 -0800 | [diff] [blame] | 42 | ChallengeModule::ChallengeFactory& |
| 43 | ChallengeModule::getFactory() |
| 44 | { |
| 45 | static ChallengeModule::ChallengeFactory factory; |
| 46 | return factory; |
| 47 | } |
| 48 | |
Zhiyi Zhang | fb74ae2 | 2017-02-22 08:02:27 -0800 | [diff] [blame] | 49 | std::string |
| 50 | ChallengeModule::generateSecretCode() |
| 51 | { |
| 52 | uint32_t securityCode = 0; |
| 53 | do { |
| 54 | securityCode = random::generateSecureWord32(); |
| 55 | } |
| 56 | while (securityCode >= 4294000000); |
| 57 | securityCode /= 4294; |
| 58 | std::string result = std::to_string(securityCode); |
| 59 | while (result.length() < 6) { |
| 60 | result = "0" + result; |
| 61 | } |
| 62 | return result; |
| 63 | } |
| 64 | |
Zhiyi Zhang | af7c290 | 2019-03-14 22:13:21 -0700 | [diff] [blame] | 65 | void |
| 66 | ChallengeModule::updateRequestOnChallengeEnd(CertificateRequest& request) |
| 67 | { |
| 68 | request.m_challengeSecrets = JsonSection(); |
| 69 | request.m_challengeTp = ""; |
| 70 | request.m_challengeType = ""; |
| 71 | request.m_remainingTime = 0; |
| 72 | request.m_remainingTries = 0; |
| 73 | } |
| 74 | |
| 75 | |
Zhiyi Zhang | 65ba932 | 2017-01-19 14:15:03 -0800 | [diff] [blame] | 76 | } // namespace ndncert |
| 77 | } // namespace ndn |