blob: 8c332cbecd8cc49f27e9fa05f9fc47d2ac913b26 [file] [log] [blame]
Zhiyi Zhang65ba9322017-01-19 14:15:03 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Zhiyi Zhangaf7c2902019-03-14 22:13:21 -07003 * Copyright (c) 2017-2019, Regents of the University of California.
Zhiyi Zhang65ba9322017-01-19 14:15:03 -08004 *
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 Shi7c068032017-05-28 13:40:47 +000022#include <ndn-cxx/util/random.hpp>
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080023
24namespace ndn {
25namespace ndncert {
26
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080027ChallengeModule::ChallengeModule(const std::string& uniqueType)
28 : CHALLENGE_TYPE(uniqueType)
29{
30}
31
Davide Pesavento08994782018-01-22 12:13:41 -050032ChallengeModule::~ChallengeModule() = default;
33
Zhiyi Zhang65ba9322017-01-19 14:15:03 -080034unique_ptr<ChallengeModule>
35ChallengeModule::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 Zhang65ba9322017-01-19 14:15:03 -080042ChallengeModule::ChallengeFactory&
43ChallengeModule::getFactory()
44{
45 static ChallengeModule::ChallengeFactory factory;
46 return factory;
47}
48
Zhiyi Zhangfb74ae22017-02-22 08:02:27 -080049std::string
50ChallengeModule::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 Zhangaf7c2902019-03-14 22:13:21 -070065void
66ChallengeModule::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 Zhang65ba9322017-01-19 14:15:03 -080076} // namespace ndncert
77} // namespace ndn