blob: 08a69974ee027465cfaadd4dea792817b4b1da80 [file] [log] [blame]
Zhiyi Zhang0453dbb2020-04-28 22:39:17 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2017-2020, Regents of the University of California.
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 "info.hpp"
22
23namespace ndn {
24namespace ndncert {
25
26Block
tylerliua7bea662020-10-08 18:51:02 -070027INFO::encodeDataContent(const CaProfile& caConfig, const security::Certificate& certificate)
Zhiyi Zhang0453dbb2020-04-28 22:39:17 -070028{
29 auto content = makeEmptyBlock(tlv::Content);
30 content.push_back(makeNestedBlock(tlv_ca_prefix, caConfig.m_caPrefix));
Suyong Won19fba4d2020-05-09 13:39:46 -070031 std::string caInfo = "";
32 if (caConfig.m_caInfo == "") {
tylerliua7bea662020-10-08 18:51:02 -070033 caInfo = "Issued by " + certificate.getSignatureInfo().getKeyLocator().getName().toUri();
Zhiyi Zhang9829da92020-09-30 16:19:34 -070034 }
35 else {
Suyong Won19fba4d2020-05-09 13:39:46 -070036 caInfo = caConfig.m_caInfo;
37 }
38 content.push_back(makeStringBlock(tlv_ca_info, caInfo));
Zhiyi Zhang0453dbb2020-04-28 22:39:17 -070039 for (const auto& key : caConfig.m_probeParameterKeys) {
40 content.push_back(makeStringBlock(tlv_parameter_key, key));
41 }
42 content.push_back(makeNonNegativeIntegerBlock(tlv_max_validity_period, caConfig.m_maxValidityPeriod.count()));
43 content.push_back(makeNestedBlock(tlv_ca_certificate, certificate));
Suyong Won44d0cce2020-05-10 04:07:43 -070044 content.encode();
Zhiyi Zhang0453dbb2020-04-28 22:39:17 -070045 return content;
46}
47
Zhiyi Zhang1d3dcd22020-10-01 22:25:43 -070048CaProfile
Zhiyi Zhang3e8ca252020-09-30 17:18:38 -070049INFO::decodeDataContent(const Block& block)
Zhiyi Zhang0453dbb2020-04-28 22:39:17 -070050{
Zhiyi Zhang1d3dcd22020-10-01 22:25:43 -070051 CaProfile result;
Zhiyi Zhang0453dbb2020-04-28 22:39:17 -070052 block.parse();
53 for (auto const& item : block.elements()) {
Zhiyi Zhang9829da92020-09-30 16:19:34 -070054 switch (item.type()) {
55 case tlv_ca_prefix:
Zhiyi Zhangb940aa12020-09-30 16:38:57 -070056 item.parse();
Zhiyi Zhang0453dbb2020-04-28 22:39:17 -070057 result.m_caPrefix.wireDecode(item.get(tlv::Name));
Zhiyi Zhang9829da92020-09-30 16:19:34 -070058 break;
59 case tlv_ca_info:
Zhiyi Zhang0453dbb2020-04-28 22:39:17 -070060 result.m_caInfo = readString(item);
Zhiyi Zhang9829da92020-09-30 16:19:34 -070061 break;
62 case tlv_parameter_key:
Zhiyi Zhang0453dbb2020-04-28 22:39:17 -070063 result.m_probeParameterKeys.push_back(readString(item));
Zhiyi Zhang9829da92020-09-30 16:19:34 -070064 break;
65 case tlv_max_validity_period:
Zhiyi Zhang0453dbb2020-04-28 22:39:17 -070066 result.m_maxValidityPeriod = time::seconds(readNonNegativeInteger(item));
Zhiyi Zhang9829da92020-09-30 16:19:34 -070067 break;
Zhiyi Zhang9829da92020-09-30 16:19:34 -070068 case tlv_ca_certificate:
Zhiyi Zhangb940aa12020-09-30 16:38:57 -070069 item.parse();
tylerliua7bea662020-10-08 18:51:02 -070070 result.m_cert = std::make_shared<security::Certificate>(item.get(tlv::Data));
Zhiyi Zhang9829da92020-09-30 16:19:34 -070071 break;
72 default:
Zhiyi Zhang0453dbb2020-04-28 22:39:17 -070073 continue;
Zhiyi Zhang9829da92020-09-30 16:19:34 -070074 break;
Zhiyi Zhang0453dbb2020-04-28 22:39:17 -070075 }
76 }
77 return result;
78}
79
Zhiyi Zhange4891b72020-10-10 15:11:57 -070080} // namespace ndncert
81} // namespace ndn