blob: 79f617f7e9436546996719078757fbd87e1953c5 [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
Zhiyi Zhangb041d442020-10-22 21:57:11 -070021#include "detail/info-encoder.hpp"
Zhiyi Zhang0453dbb2020-04-28 22:39:17 -070022
23namespace ndn {
24namespace ndncert {
25
26Block
Zhiyi Zhangf22ae242020-11-17 10:51:15 -080027infotlv::encodeDataContent(const CaProfile& caConfig, const security::Certificate& certificate)
Zhiyi Zhang0453dbb2020-04-28 22:39:17 -070028{
tylerliu1f480be2020-11-10 13:02:53 -080029 Block content(ndn::tlv::Content);
Zhiyi Zhang44c6a352020-12-14 10:57:17 -080030 content.push_back(makeNestedBlock(tlv::CaPrefix, caConfig.caPrefix));
Suyong Won19fba4d2020-05-09 13:39:46 -070031 std::string caInfo = "";
Zhiyi Zhang44c6a352020-12-14 10:57:17 -080032 if (caConfig.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 {
Zhiyi Zhang44c6a352020-12-14 10:57:17 -080036 caInfo = caConfig.caInfo;
Suyong Won19fba4d2020-05-09 13:39:46 -070037 }
tylerliu50d679e2020-10-14 14:08:39 -070038 content.push_back(makeStringBlock(tlv::CaInfo, caInfo));
Zhiyi Zhang44c6a352020-12-14 10:57:17 -080039 for (const auto& key : caConfig.probeParameterKeys) {
tylerliu50d679e2020-10-14 14:08:39 -070040 content.push_back(makeStringBlock(tlv::ParameterKey, key));
Zhiyi Zhang0453dbb2020-04-28 22:39:17 -070041 }
Zhiyi Zhang44c6a352020-12-14 10:57:17 -080042 content.push_back(makeNonNegativeIntegerBlock(tlv::MaxValidityPeriod, caConfig.maxValidityPeriod.count()));
tylerliu50d679e2020-10-14 14:08:39 -070043 content.push_back(makeNestedBlock(tlv::CaCertificate, 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 Zhangf22ae242020-11-17 10:51:15 -080049infotlv::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()) {
tylerliu50d679e2020-10-14 14:08:39 -070055 case tlv::CaPrefix:
Zhiyi Zhangb940aa12020-09-30 16:38:57 -070056 item.parse();
Zhiyi Zhang44c6a352020-12-14 10:57:17 -080057 result.caPrefix.wireDecode(item.get(ndn::tlv::Name));
Zhiyi Zhang9829da92020-09-30 16:19:34 -070058 break;
tylerliu50d679e2020-10-14 14:08:39 -070059 case tlv::CaInfo:
Zhiyi Zhang44c6a352020-12-14 10:57:17 -080060 result.caInfo = readString(item);
Zhiyi Zhang9829da92020-09-30 16:19:34 -070061 break;
tylerliu50d679e2020-10-14 14:08:39 -070062 case tlv::ParameterKey:
Zhiyi Zhang44c6a352020-12-14 10:57:17 -080063 result.probeParameterKeys.push_back(readString(item));
Zhiyi Zhang9829da92020-09-30 16:19:34 -070064 break;
tylerliu50d679e2020-10-14 14:08:39 -070065 case tlv::MaxValidityPeriod:
Zhiyi Zhang44c6a352020-12-14 10:57:17 -080066 result.maxValidityPeriod = time::seconds(readNonNegativeInteger(item));
Zhiyi Zhang9829da92020-09-30 16:19:34 -070067 break;
tylerliu50d679e2020-10-14 14:08:39 -070068 case tlv::CaCertificate:
Zhiyi Zhangb940aa12020-09-30 16:38:57 -070069 item.parse();
Zhiyi Zhang44c6a352020-12-14 10:57:17 -080070 result.cert = std::make_shared<security::Certificate>(item.get(ndn::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