Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [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 | /* |
Davide Pesavento | a3d809e | 2022-02-06 11:55:02 -0500 | [diff] [blame] | 3 | * Copyright (c) 2013-2022 Regents of the University of California. |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [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 | * @author Zhiyi Zhang <dreamerbarrychang@gmail.com> |
| 22 | */ |
| 23 | |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 24 | #include "ndn-cxx/security/certificate.hpp" |
Davide Pesavento | dd0724b | 2022-04-18 00:30:05 -0400 | [diff] [blame] | 25 | #include "ndn-cxx/encoding/block-helpers.hpp" |
| 26 | #include "ndn-cxx/util/io.hpp" |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 27 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 28 | #include "tests/boost-test.hpp" |
Davide Pesavento | 4c1ad4c | 2020-11-16 21:12:02 -0500 | [diff] [blame] | 29 | #include "tests/unit/clock-fixture.hpp" |
Davide Pesavento | 74daf74 | 2018-11-23 18:14:13 -0500 | [diff] [blame] | 30 | |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 31 | #include <boost/lexical_cast.hpp> |
| 32 | |
| 33 | namespace ndn { |
| 34 | namespace security { |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 35 | inline namespace v2 { |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 36 | namespace tests { |
| 37 | |
| 38 | using namespace ndn::tests; |
| 39 | |
| 40 | BOOST_AUTO_TEST_SUITE(Security) |
Davide Pesavento | 4c1ad4c | 2020-11-16 21:12:02 -0500 | [diff] [blame] | 41 | BOOST_FIXTURE_TEST_SUITE(TestCertificate, ClockFixture) |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 42 | |
| 43 | const uint8_t PUBLIC_KEY[] = { |
| 44 | 0x30, 0x81, 0x9d, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, |
| 45 | 0x01, 0x05, 0x00, 0x03, 0x81, 0x8b, 0x00, 0x30, 0x81, 0x87, 0x02, 0x81, 0x81, 0x00, 0x9e, |
| 46 | 0x06, 0x3e, 0x47, 0x85, 0xb2, 0x34, 0x37, 0xaa, 0x85, 0x47, 0xac, 0x03, 0x24, 0x83, 0xb5, |
| 47 | 0x9c, 0xa8, 0x05, 0x3a, 0x24, 0x1e, 0xeb, 0x89, 0x01, 0xbb, 0xe9, 0x9b, 0xb2, 0xc3, 0x22, |
| 48 | 0xac, 0x68, 0xe3, 0xf0, 0x6c, 0x02, 0xce, 0x68, 0xa6, 0xc4, 0xd0, 0xa7, 0x06, 0x90, 0x9c, |
| 49 | 0xaa, 0x1b, 0x08, 0x1d, 0x8b, 0x43, 0x9a, 0x33, 0x67, 0x44, 0x6d, 0x21, 0xa3, 0x1b, 0x88, |
| 50 | 0x9a, 0x97, 0x5e, 0x59, 0xc4, 0x15, 0x0b, 0xd9, 0x2c, 0xbd, 0x51, 0x07, 0x61, 0x82, 0xad, |
| 51 | 0xc1, 0xb8, 0xd7, 0xbf, 0x9b, 0xcf, 0x7d, 0x24, 0xc2, 0x63, 0xf3, 0x97, 0x17, 0xeb, 0xfe, |
| 52 | 0x62, 0x25, 0xba, 0x5b, 0x4d, 0x8a, 0xc2, 0x7a, 0xbd, 0x43, 0x8a, 0x8f, 0xb8, 0xf2, 0xf1, |
| 53 | 0xc5, 0x6a, 0x30, 0xd3, 0x50, 0x8c, 0xc8, 0x9a, 0xdf, 0xef, 0xed, 0x35, 0xe7, 0x7a, 0x62, |
| 54 | 0xea, 0x76, 0x7c, 0xbb, 0x08, 0x26, 0xc7, 0x02, 0x01, 0x11 |
| 55 | }; |
| 56 | |
| 57 | const uint8_t SIG_INFO[] = { |
| 58 | 0x16, 0x55, 0x1B, 0x01, 0x01, 0x1C, 0x26, 0x07, 0x24, 0x08, 0x03, 0x6E, 0x64, 0x6E, 0x08, 0x05, |
| 59 | 0x73, 0x69, 0x74, 0x65, 0x31, 0x08, 0x11, 0x6B, 0x73, 0x6B, 0x2D, 0x32, 0x35, 0x31, 0x36, 0x34, |
| 60 | 0x32, 0x35, 0x33, 0x37, 0x37, 0x30, 0x39, 0x34, 0x08, 0x03, 0x4B, 0x45, 0x59, 0xFD, 0x00, 0xFD, |
| 61 | 0x26, 0xFD, 0x00, 0xFE, 0x0F, 0x32, 0x30, 0x31, 0x35, 0x30, 0x38, 0x31, 0x34, 0x54, 0x32, 0x32, |
| 62 | 0x33, 0x37, 0x33, 0x39, 0xFD, 0x00, 0xFF, 0x0F, 0x32, 0x30, 0x31, 0x35, 0x30, 0x38, 0x31, 0x38, |
| 63 | 0x54, 0x32, 0x32, 0x33, 0x37, 0x33, 0x38 |
| 64 | }; |
| 65 | |
| 66 | const uint8_t SIG_VALUE[] = { |
Davide Pesavento | 14c56cd | 2020-05-21 01:44:03 -0400 | [diff] [blame] | 67 | 0x2f, 0xd6, 0xf1, 0x6e, 0x80, 0x6f, 0x10, 0xbe, 0xb1, 0x6f, 0x3e, 0x31, 0xec, 0xe3, 0xb9, 0xea, |
| 68 | 0x83, 0x30, 0x40, 0x03, 0xfc, 0xa0, 0x13, 0xd9, 0xb3, 0xc6, 0x25, 0x16, 0x2d, 0xa6, 0x58, 0x41, |
| 69 | 0x69, 0x62, 0x56, 0xd8, 0xb3, 0x6a, 0x38, 0x76, 0x56, 0xea, 0x61, 0xb2, 0x32, 0x70, 0x1c, 0xb6, |
| 70 | 0x4d, 0x10, 0x1d, 0xdc, 0x92, 0x8e, 0x52, 0xa5, 0x8a, 0x1d, 0xd9, 0x96, 0x5e, 0xc0, 0x62, 0x0b, |
| 71 | 0xcf, 0x3a, 0x9d, 0x7f, 0xca, 0xbe, 0xa1, 0x41, 0x71, 0x85, 0x7a, 0x8b, 0x5d, 0xa9, 0x64, 0xd6, |
| 72 | 0x66, 0xb4, 0xe9, 0x8d, 0x0c, 0x28, 0x43, 0xee, 0xa6, 0x64, 0xe8, 0x55, 0xf6, 0x1c, 0x19, 0x0b, |
| 73 | 0xef, 0x99, 0x25, 0x1e, 0xdc, 0x78, 0xb3, 0xa7, 0xaa, 0x0d, 0x14, 0x58, 0x30, 0xe5, 0x37, 0x6a, |
| 74 | 0x6d, 0xdb, 0x56, 0xac, 0xa3, 0xfc, 0x90, 0x7a, 0xb8, 0x66, 0x9c, 0x0e, 0xf6, 0xb7, 0x64, 0xd1, |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 75 | }; |
| 76 | |
| 77 | const uint8_t CERT[] = { |
| 78 | 0x06, 0xFD, 0x01, 0xBB, // Data |
| 79 | 0x07, 0x33, // Name /ndn/site1/KEY/ksk-1416425377094/0123/%FD%00%00%01I%C9%8B |
| 80 | 0x08, 0x03, 0x6E, 0x64, 0x6E, |
| 81 | 0x08, 0x05, 0x73, 0x69, 0x74, 0x65, 0x31, |
| 82 | 0x08, 0x03, 0x4B, 0x45, 0x59, |
| 83 | 0x08, 0x11, |
| 84 | 0x6B, 0x73, 0x6B, 0x2D, 0x31, 0x34, 0x31, 0x36, 0x34, 0x32, 0x35, 0x33, 0x37, 0x37, 0x30, 0x39, |
| 85 | 0x34, |
| 86 | 0x08, 0x04, 0x30, 0x31, 0x32, 0x33, |
| 87 | 0x08, 0x07, 0xFD, 0x00, 0x00, 0x01, 0x49, 0xC9, 0x8B, |
| 88 | 0x14, 0x09, // MetaInfo |
| 89 | 0x18, 0x01, 0x02, // ContentType = Key |
| 90 | 0x19, 0x04, 0x00, 0x36, 0xEE, 0x80, // FreshnessPeriod = 3600000 ms |
| 91 | 0x15, 0xA0, // Content |
| 92 | 0x30, 0x81, 0x9D, 0x30, 0x0D, 0x06, 0x09, 0x2A, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x01, 0x01, 0x01, |
| 93 | 0x05, 0x00, 0x03, 0x81, 0x8B, 0x00, 0x30, 0x81, 0x87, 0x02, 0x81, 0x81, 0x00, 0x9E, 0x06, 0x3E, |
| 94 | 0x47, 0x85, 0xB2, 0x34, 0x37, 0xAA, 0x85, 0x47, 0xAC, 0x03, 0x24, 0x83, 0xB5, 0x9C, 0xA8, 0x05, |
| 95 | 0x3A, 0x24, 0x1E, 0xEB, 0x89, 0x01, 0xBB, 0xE9, 0x9B, 0xB2, 0xC3, 0x22, 0xAC, 0x68, 0xE3, 0xF0, |
| 96 | 0x6C, 0x02, 0xCE, 0x68, 0xA6, 0xC4, 0xD0, 0xA7, 0x06, 0x90, 0x9C, 0xAA, 0x1B, 0x08, 0x1D, 0x8B, |
| 97 | 0x43, 0x9A, 0x33, 0x67, 0x44, 0x6D, 0x21, 0xA3, 0x1B, 0x88, 0x9A, 0x97, 0x5E, 0x59, 0xC4, 0x15, |
| 98 | 0x0B, 0xD9, 0x2C, 0xBD, 0x51, 0x07, 0x61, 0x82, 0xAD, 0xC1, 0xB8, 0xD7, 0xBF, 0x9B, 0xCF, 0x7D, |
| 99 | 0x24, 0xC2, 0x63, 0xF3, 0x97, 0x17, 0xEB, 0xFE, 0x62, 0x25, 0xBA, 0x5B, 0x4D, 0x8A, 0xC2, 0x7A, |
| 100 | 0xBD, 0x43, 0x8A, 0x8F, 0xB8, 0xF2, 0xF1, 0xC5, 0x6A, 0x30, 0xD3, 0x50, 0x8C, 0xC8, 0x9A, 0xDF, |
| 101 | 0xEF, 0xED, 0x35, 0xE7, 0x7A, 0x62, 0xEA, 0x76, 0x7C, 0xBB, 0x08, 0x26, 0xC7, 0x02, 0x01, 0x11, |
| 102 | 0x16, 0x55, // SignatureInfo |
| 103 | 0x1B, 0x01, 0x01, // SignatureType |
| 104 | 0x1C, 0x26, // KeyLocator: /ndn/site1/KEY/ksk-2516425377094 |
| 105 | 0x07, 0x24, |
| 106 | 0x08, 0x03, 0x6E, 0x64, 0x6E, |
| 107 | 0x08, 0x05, 0x73, 0x69, 0x74, 0x65, 0x31, |
| 108 | 0x08, 0x03, 0x4B, 0x45, 0x59, |
| 109 | 0x08, 0x11, |
| 110 | 0x6B, 0x73, 0x6B, 0x2D, 0x32, 0x35, 0x31, 0x36, 0x34, 0x32, 0x35, 0x33, 0x37, 0x37, 0x30, 0x39, |
| 111 | 0x34, |
| 112 | 0xFD, 0x00, 0xFD, 0x26, // ValidityPeriod: (20150814T223739, 20150818T223738) |
| 113 | 0xFD, 0x00, 0xFE, 0x0F, |
| 114 | 0x32, 0x30, 0x31, 0x35, 0x30, 0x38, 0x31, 0x34, 0x54, 0x32, 0x32, 0x33, 0x37, 0x33, 0x39, |
| 115 | 0xFD, 0x00, 0xFF, 0x0F, |
| 116 | 0x32, 0x30, 0x31, 0x35, 0x30, 0x38, 0x31, 0x38, 0x54, 0x32, 0x32, 0x33, 0x37, 0x33, 0x38, |
| 117 | 0x17, 0x80, // SignatureValue |
| 118 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, |
| 119 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, |
| 120 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, |
| 121 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, |
| 122 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, |
| 123 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, |
| 124 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, |
| 125 | 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF |
| 126 | }; |
| 127 | |
Eric Newberry | a3c8bd1 | 2020-05-15 17:27:07 -0700 | [diff] [blame] | 128 | static void |
| 129 | generateFakeSignature(Data& data) |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 130 | { |
Davide Pesavento | fbea4fc | 2022-02-08 07:26:04 -0500 | [diff] [blame] | 131 | SignatureInfo signatureInfo(Block{SIG_INFO}); |
Eric Newberry | a3c8bd1 | 2020-05-15 17:27:07 -0700 | [diff] [blame] | 132 | signatureInfo.setKeyLocator(KeyLocator(Name("/ndn/site1/KEY/ksk-2516425377094"))); |
| 133 | signatureInfo.setValidityPeriod(ValidityPeriod(time::fromIsoString("20141111T050000"), |
| 134 | time::fromIsoString("20141111T060000"))); |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 135 | |
Eric Newberry | a3c8bd1 | 2020-05-15 17:27:07 -0700 | [diff] [blame] | 136 | data.setSignatureInfo(signatureInfo); |
Davide Pesavento | 14c56cd | 2020-05-21 01:44:03 -0400 | [diff] [blame] | 137 | data.setSignatureValue(make_shared<Buffer>(SIG_VALUE, sizeof(SIG_VALUE))); |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 138 | } |
| 139 | |
| 140 | BOOST_AUTO_TEST_CASE(Construction) |
| 141 | { |
Davide Pesavento | fbea4fc | 2022-02-08 07:26:04 -0500 | [diff] [blame] | 142 | Block block(CERT); |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 143 | Certificate certificate(block); |
| 144 | |
| 145 | BOOST_CHECK_EQUAL(certificate.getName(), "/ndn/site1/KEY/ksk-1416425377094/0123/%FD%00%00%01I%C9%8B"); |
| 146 | BOOST_CHECK_EQUAL(certificate.getKeyName(), "/ndn/site1/KEY/ksk-1416425377094"); |
| 147 | BOOST_CHECK_EQUAL(certificate.getIdentity(), "/ndn/site1"); |
| 148 | BOOST_CHECK_EQUAL(certificate.getIssuerId(), name::Component("0123")); |
| 149 | BOOST_CHECK_EQUAL(certificate.getKeyId(), name::Component("ksk-1416425377094")); |
Davide Pesavento | dd0724b | 2022-04-18 00:30:05 -0400 | [diff] [blame] | 150 | BOOST_CHECK_EQUAL(certificate.getKeyLocator().value().getName(), "/ndn/site1/KEY/ksk-2516425377094"); |
Davide Pesavento | 14c56cd | 2020-05-21 01:44:03 -0400 | [diff] [blame] | 151 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(certificate.getValidityPeriod()), |
| 152 | "(20150814T223739, 20150818T223738)"); |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 153 | |
Davide Pesavento | dd0724b | 2022-04-18 00:30:05 -0400 | [diff] [blame] | 154 | BOOST_CHECK_THROW(certificate.getExtension(12345), Data::Error); |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 155 | BOOST_CHECK_NO_THROW(certificate.getPublicKey()); |
| 156 | |
| 157 | Data data(block); |
| 158 | Certificate certificate2(std::move(data)); |
| 159 | BOOST_CHECK_EQUAL(certificate, certificate2); |
| 160 | } |
| 161 | |
| 162 | BOOST_AUTO_TEST_CASE(Setters) |
| 163 | { |
| 164 | Certificate certificate; |
| 165 | certificate.setName("/ndn/site1/KEY/ksk-1416425377094/0123/%FD%00%00%01I%C9%8B"); |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 166 | certificate.setFreshnessPeriod(1_h); |
Davide Pesavento | a3d809e | 2022-02-06 11:55:02 -0500 | [diff] [blame] | 167 | certificate.setContent(PUBLIC_KEY); |
Eric Newberry | a3c8bd1 | 2020-05-15 17:27:07 -0700 | [diff] [blame] | 168 | generateFakeSignature(certificate); |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 169 | |
| 170 | BOOST_CHECK_EQUAL(certificate.getName(), "/ndn/site1/KEY/ksk-1416425377094/0123/%FD%00%00%01I%C9%8B"); |
| 171 | BOOST_CHECK_EQUAL(certificate.getKeyName(), "/ndn/site1/KEY/ksk-1416425377094"); |
| 172 | BOOST_CHECK_EQUAL(certificate.getIdentity(), "/ndn/site1"); |
| 173 | BOOST_CHECK_EQUAL(certificate.getIssuerId(), name::Component("0123")); |
| 174 | BOOST_CHECK_EQUAL(certificate.getKeyId(), name::Component("ksk-1416425377094")); |
Davide Pesavento | dd0724b | 2022-04-18 00:30:05 -0400 | [diff] [blame] | 175 | BOOST_CHECK_EQUAL(certificate.getKeyLocator().value().getName(), "/ndn/site1/KEY/ksk-2516425377094"); |
Davide Pesavento | 14c56cd | 2020-05-21 01:44:03 -0400 | [diff] [blame] | 176 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(certificate.getValidityPeriod()), |
| 177 | "(20141111T050000, 20141111T060000)"); |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 178 | |
Davide Pesavento | dd0724b | 2022-04-18 00:30:05 -0400 | [diff] [blame] | 179 | BOOST_CHECK_THROW(certificate.getExtension(12345), Data::Error); |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 180 | BOOST_CHECK_NO_THROW(certificate.getPublicKey()); |
| 181 | } |
| 182 | |
| 183 | BOOST_AUTO_TEST_CASE(ValidityPeriodChecking) |
| 184 | { |
| 185 | Certificate certificate; |
| 186 | certificate.setName("/ndn/site1/KEY/ksk-1416425377094/0123/%FD%00%00%01I%C9%8B"); |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 187 | certificate.setFreshnessPeriod(1_h); |
Davide Pesavento | a3d809e | 2022-02-06 11:55:02 -0500 | [diff] [blame] | 188 | certificate.setContent(PUBLIC_KEY); |
Eric Newberry | a3c8bd1 | 2020-05-15 17:27:07 -0700 | [diff] [blame] | 189 | generateFakeSignature(certificate); |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 190 | |
| 191 | BOOST_CHECK_EQUAL(certificate.isValid(), true); |
| 192 | BOOST_CHECK_EQUAL(certificate.isValid(time::fromIsoString("20141111T045959")), false); |
| 193 | BOOST_CHECK_EQUAL(certificate.isValid(time::fromIsoString("20141111T060001")), false); |
| 194 | } |
| 195 | |
| 196 | // This fixture prepares a well-formed certificate. A test case then modifies one of the |
| 197 | // fields, and verifies the Certificate class correctly identifies the certificate as |
| 198 | // malformed. |
| 199 | class InvalidCertFixture |
| 200 | { |
| 201 | public: |
| 202 | InvalidCertFixture() |
| 203 | { |
Davide Pesavento | fbea4fc | 2022-02-08 07:26:04 -0500 | [diff] [blame] | 204 | Certificate certBase(Block{CERT}); |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 205 | m_certBase = Data(certBase); |
Eric Newberry | a3c8bd1 | 2020-05-15 17:27:07 -0700 | [diff] [blame] | 206 | generateFakeSignature(m_certBase); |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 207 | |
Davide Pesavento | dd0724b | 2022-04-18 00:30:05 -0400 | [diff] [blame] | 208 | BOOST_REQUIRE_NO_THROW(Certificate{m_certBase}); |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 209 | } |
| 210 | |
Davide Pesavento | dd0724b | 2022-04-18 00:30:05 -0400 | [diff] [blame] | 211 | protected: |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 212 | Data m_certBase; |
| 213 | }; |
| 214 | |
| 215 | BOOST_FIXTURE_TEST_CASE(InvalidName, InvalidCertFixture) |
| 216 | { |
| 217 | Data data(m_certBase); |
| 218 | data.setName("/ndn/site1/ksk-1416425377094/0123/%FD%00%00%01I%C9%8B"); |
Eric Newberry | a3c8bd1 | 2020-05-15 17:27:07 -0700 | [diff] [blame] | 219 | generateFakeSignature(data); |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 220 | |
| 221 | BOOST_CHECK_THROW((Certificate(data)), Certificate::Error); |
| 222 | BOOST_CHECK_THROW((Certificate(std::move(data))), Certificate::Error); |
| 223 | } |
| 224 | |
| 225 | BOOST_FIXTURE_TEST_CASE(InvalidType, InvalidCertFixture) |
| 226 | { |
| 227 | Data data(m_certBase); |
| 228 | data.setContentType(tlv::ContentType_Blob); |
Eric Newberry | a3c8bd1 | 2020-05-15 17:27:07 -0700 | [diff] [blame] | 229 | generateFakeSignature(data); |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 230 | |
| 231 | BOOST_CHECK_THROW((Certificate(data)), Certificate::Error); |
| 232 | BOOST_CHECK_THROW((Certificate(std::move(data))), Certificate::Error); |
| 233 | } |
| 234 | |
| 235 | BOOST_FIXTURE_TEST_CASE(EmptyContent, InvalidCertFixture) |
| 236 | { |
| 237 | Data data(m_certBase); |
Davide Pesavento | a3d809e | 2022-02-06 11:55:02 -0500 | [diff] [blame] | 238 | data.setContent(span<uint8_t>{}); |
Eric Newberry | a3c8bd1 | 2020-05-15 17:27:07 -0700 | [diff] [blame] | 239 | generateFakeSignature(data); |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 240 | |
Davide Pesavento | a3d809e | 2022-02-06 11:55:02 -0500 | [diff] [blame] | 241 | BOOST_CHECK_THROW(Certificate{data}, Certificate::Error); |
| 242 | BOOST_CHECK_THROW(Certificate{std::move(data)}, Certificate::Error); |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 243 | |
| 244 | Certificate cert(m_certBase); |
Davide Pesavento | a3d809e | 2022-02-06 11:55:02 -0500 | [diff] [blame] | 245 | cert.setContent(span<uint8_t>{}); |
Eric Newberry | a3c8bd1 | 2020-05-15 17:27:07 -0700 | [diff] [blame] | 246 | generateFakeSignature(cert); |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 247 | BOOST_CHECK_THROW(cert.getPublicKey(), Certificate::Error); |
| 248 | } |
| 249 | |
Davide Pesavento | dd0724b | 2022-04-18 00:30:05 -0400 | [diff] [blame] | 250 | BOOST_AUTO_TEST_CASE(Print) |
Alexander Afanasyev | 5f1820e | 2017-01-04 18:12:42 -0800 | [diff] [blame] | 251 | { |
Davide Pesavento | dd0724b | 2022-04-18 00:30:05 -0400 | [diff] [blame] | 252 | const std::string expected1( |
| 253 | R"TXT(Certificate Name: |
| 254 | / |
| 255 | Public Key: |
| 256 | Key Type: Unknown (0 bytes) |
| 257 | Signature Information: |
| 258 | Signature Type: Unknown(65535) |
| 259 | )TXT"); |
| 260 | |
| 261 | Certificate cert1; |
| 262 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(cert1), expected1); |
| 263 | |
| 264 | const std::string expected2( |
| 265 | R"TXT(Certificate Name: |
Alexander Afanasyev | 5f1820e | 2017-01-04 18:12:42 -0800 | [diff] [blame] | 266 | /ndn/site1/KEY/ksk-1416425377094/0123/%FD%00%00%01I%C9%8B |
Davide Pesavento | dd0724b | 2022-04-18 00:30:05 -0400 | [diff] [blame] | 267 | Public Key: |
| 268 | Key Type: 1024-bit RSA |
Alexander Afanasyev | 5f1820e | 2017-01-04 18:12:42 -0800 | [diff] [blame] | 269 | MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQCeBj5HhbI0N6qFR6wDJIO1nKgF |
| 270 | OiQe64kBu+mbssMirGjj8GwCzmimxNCnBpCcqhsIHYtDmjNnRG0hoxuImpdeWcQV |
| 271 | C9ksvVEHYYKtwbjXv5vPfSTCY/OXF+v+YiW6W02Kwnq9Q4qPuPLxxWow01CMyJrf |
| 272 | 7+0153pi6nZ8uwgmxwIBEQ== |
Davide Pesavento | dd0724b | 2022-04-18 00:30:05 -0400 | [diff] [blame] | 273 | Validity: |
| 274 | Not Before: 2015-08-14T22:37:39 |
| 275 | Not After: 2015-08-18T22:37:38 |
Alexander Afanasyev | 5f1820e | 2017-01-04 18:12:42 -0800 | [diff] [blame] | 276 | Signature Information: |
| 277 | Signature Type: SignatureSha256WithRsa |
| 278 | Key Locator: Name=/ndn/site1/KEY/ksk-2516425377094 |
Davide Pesavento | dd0724b | 2022-04-18 00:30:05 -0400 | [diff] [blame] | 279 | )TXT"); |
Alexander Afanasyev | 5f1820e | 2017-01-04 18:12:42 -0800 | [diff] [blame] | 280 | |
Davide Pesavento | dd0724b | 2022-04-18 00:30:05 -0400 | [diff] [blame] | 281 | Certificate cert2(Block{CERT}); |
| 282 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(cert2), expected2); |
Alexander Afanasyev | 5f1820e | 2017-01-04 18:12:42 -0800 | [diff] [blame] | 283 | |
Davide Pesavento | dd0724b | 2022-04-18 00:30:05 -0400 | [diff] [blame] | 284 | const std::string expected3( |
| 285 | R"TXT(Certificate Name: |
| 286 | /ndn/test/identity/KEY/%C7G%3A%D6%12P%B5%F0/self/v=1650251820652 |
| 287 | Public Key: |
| 288 | Key Type: 256-bit EC |
| 289 | MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEnoGVuhO+9JnIRo6QSgJin8RgA8Gh |
| 290 | RN9oVbnXi2rAJa4jq1yuCKaLeOt2sdXlkW6uBByOhbTuDdovlbIUsJ8bhg== |
| 291 | Validity: |
| 292 | Not Before: 1970-01-01T00:00:00 |
| 293 | Not After: 2042-04-13T03:17:00 |
| 294 | Signature Information: |
| 295 | Signature Type: SignatureSha256WithEcdsa |
| 296 | Key Locator: Name=/ndn/test/identity/KEY/%C7G%3A%D6%12P%B5%F0 |
| 297 | Self-Signed: yes |
| 298 | )TXT"); |
| 299 | |
| 300 | std::istringstream is( |
| 301 | R"BASE64(Bv0BPgc0CANuZG4IBHRlc3QICGlkZW50aXR5CANLRVkICMdHOtYSULXwCARzZWxm |
| 302 | NggAAAGAOqxubBQJGAECGQQANu6AFVswWTATBgcqhkjOPQIBBggqhkjOPQMBBwNC |
| 303 | AASegZW6E770mchGjpBKAmKfxGADwaFE32hVudeLasAlriOrXK4Ipot463ax1eWR |
| 304 | bq4EHI6FtO4N2i+VshSwnxuGFlUbAQMcJgckCANuZG4IBHRlc3QICGlkZW50aXR5 |
| 305 | CANLRVkICMdHOtYSULXw/QD9Jv0A/g8xOTcwMDEwMVQwMDAwMDD9AP8PMjA0MjA0 |
| 306 | MTNUMDMxNzAwF0cwRQIgFRnwthtzKdqRgO3cZMNA1hfT3QcNu/+xjo7hUy+UvdsC |
| 307 | IQCz3DHoRtKl7uZoJOgQsZP1/CGkNjlGZE3EQ+Ylwiprrw==)BASE64"); |
| 308 | Certificate cert3 = io::loadTlv<Certificate>(is, io::BASE64); |
| 309 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(cert3), expected3); |
| 310 | |
| 311 | const std::string expected4( |
| 312 | R"TXT(Certificate Name: |
| 313 | /ndn/test/identity/KEY/%C7G%3A%D6%12P%B5%F0/self/v=1650251820652 |
| 314 | Public Key: |
| 315 | Key Type: Unknown (23 bytes) |
| 316 | bm90IGEgdmFsaWQgcHVibGljIGtleQA= |
| 317 | Validity: |
| 318 | Not Before: 1970-01-01T00:00:00 |
| 319 | Not After: 2042-04-13T03:17:00 |
| 320 | Signature Information: |
| 321 | Signature Type: SignatureSha256WithEcdsa |
| 322 | Key Locator: Name=/ndn/test/identity/KEY/%C7G%3A%D6%12P%B5%F0 |
| 323 | Self-Signed: yes |
| 324 | )TXT"); |
| 325 | |
| 326 | const uint8_t notAKey[] = "not a valid public key"; |
| 327 | Certificate cert4(cert3); |
| 328 | cert4.setContent(notAKey); |
| 329 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(cert4), expected4); |
| 330 | |
| 331 | const std::string expected5( |
| 332 | R"TXT(Certificate Name: |
| 333 | /ndn/test/identity/KEY/%C7G%3A%D6%12P%B5%F0/self/v=1650251820652 |
| 334 | Additional Description: |
| 335 | bWFsZm9ybWVk |
| 336 | Public Key: |
| 337 | Key Type: 256-bit EC |
| 338 | MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEnoGVuhO+9JnIRo6QSgJin8RgA8Gh |
| 339 | RN9oVbnXi2rAJa4jq1yuCKaLeOt2sdXlkW6uBByOhbTuDdovlbIUsJ8bhg== |
| 340 | Validity: |
| 341 | Not Before: 1970-01-01T00:00:00 |
| 342 | Not After: 2042-04-13T03:17:00 |
| 343 | Signature Information: |
| 344 | Signature Type: SignatureSha256WithEcdsa |
| 345 | Key Locator: KeyDigest=0000000000000000 |
| 346 | )TXT"); |
| 347 | |
| 348 | auto sigInfo = cert3.getSignatureInfo(); |
| 349 | sigInfo.addCustomTlv(makeStringBlock(tlv::AdditionalDescription, "malformed")); |
| 350 | sigInfo.setKeyLocator(KeyLocator().setKeyDigest(std::make_shared<Buffer>(8))); |
| 351 | Certificate cert5(cert3); |
| 352 | cert5.setSignatureInfo(sigInfo); |
| 353 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(cert5), expected5); |
| 354 | |
| 355 | const std::string expected6( |
| 356 | R"TXT(Certificate Name: |
| 357 | /ndn/test/identity/KEY/%C7G%3A%D6%12P%B5%F0/self/v=1650251820652 |
| 358 | Public Key: |
| 359 | Key Type: 256-bit EC |
| 360 | MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEnoGVuhO+9JnIRo6QSgJin8RgA8Gh |
| 361 | RN9oVbnXi2rAJa4jq1yuCKaLeOt2sdXlkW6uBByOhbTuDdovlbIUsJ8bhg== |
| 362 | Signature Information: |
| 363 | Signature Type: DigestSha256 |
| 364 | )TXT"); |
| 365 | |
| 366 | sigInfo.removeCustomTlv(tlv::AdditionalDescription); |
| 367 | sigInfo.addCustomTlv(makeStringBlock(tlv::ValidityPeriod, "malformed")); |
| 368 | sigInfo.setSignatureType(tlv::DigestSha256); |
| 369 | sigInfo.setKeyLocator(nullopt); |
| 370 | Certificate cert6(cert3); |
| 371 | cert6.setSignatureInfo(sigInfo); |
| 372 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(cert6), expected6); |
Alexander Afanasyev | 5f1820e | 2017-01-04 18:12:42 -0800 | [diff] [blame] | 373 | } |
| 374 | |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 375 | BOOST_AUTO_TEST_SUITE_END() // TestCertificate |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 376 | BOOST_AUTO_TEST_SUITE_END() // Security |
| 377 | |
| 378 | } // namespace tests |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 379 | } // inline namespace v2 |
Zhiyi Zhang | f4bb5c7 | 2015-08-19 19:02:51 -0700 | [diff] [blame] | 380 | } // namespace security |
| 381 | } // namespace ndn |