Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Yingdi Yu | 9a33535 | 2014-01-31 11:57:46 -0800 | [diff] [blame] | 2 | /** |
Alexander Afanasyev | 4c9a3d5 | 2017-01-03 17:45:19 -0800 | [diff] [blame] | 3 | * Copyright (c) 2013-2017 Regents of the University of California. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 6 | * |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 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. |
Yingdi Yu | 9a33535 | 2014-01-31 11:57:46 -0800 | [diff] [blame] | 20 | */ |
| 21 | |
Yingdi Yu | 9a33535 | 2014-01-31 11:57:46 -0800 | [diff] [blame] | 22 | #include "security/validator-null.hpp" |
Junxiao Shi | 198c381 | 2016-08-12 19:24:18 +0000 | [diff] [blame] | 23 | |
Alexander Afanasyev | b1db7c6 | 2014-04-03 14:57:25 -0700 | [diff] [blame] | 24 | #include "boost-test.hpp" |
Junxiao Shi | 198c381 | 2016-08-12 19:24:18 +0000 | [diff] [blame] | 25 | #include "identity-management-fixture.hpp" |
| 26 | #include "../make-interest-data.hpp" |
Yingdi Yu | 9a33535 | 2014-01-31 11:57:46 -0800 | [diff] [blame] | 27 | |
Yingdi Yu | 9a33535 | 2014-01-31 11:57:46 -0800 | [diff] [blame] | 28 | namespace ndn { |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 29 | namespace security { |
Spyridon Mastorakis | 429634f | 2015-02-19 17:35:33 -0800 | [diff] [blame] | 30 | namespace tests { |
Yingdi Yu | 9a33535 | 2014-01-31 11:57:46 -0800 | [diff] [blame] | 31 | |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 32 | using namespace ndn::tests; |
| 33 | |
Junxiao Shi | 198c381 | 2016-08-12 19:24:18 +0000 | [diff] [blame] | 34 | BOOST_AUTO_TEST_SUITE(Security) |
Alexander Afanasyev | 70244f4 | 2017-01-04 12:47:12 -0800 | [diff] [blame] | 35 | BOOST_FIXTURE_TEST_SUITE(TestValidator, IdentityManagementV1Fixture) |
Yingdi Yu | 9a33535 | 2014-01-31 11:57:46 -0800 | [diff] [blame] | 36 | |
| 37 | void |
| 38 | onValidated(const shared_ptr<const Data>& data) |
Alexander Afanasyev | 24b75c8 | 2014-05-31 15:59:31 +0300 | [diff] [blame] | 39 | { |
| 40 | BOOST_CHECK(true); |
| 41 | } |
Yingdi Yu | 9a33535 | 2014-01-31 11:57:46 -0800 | [diff] [blame] | 42 | |
| 43 | void |
Junxiao Shi | 198c381 | 2016-08-12 19:24:18 +0000 | [diff] [blame] | 44 | onValidationFailed(const shared_ptr<const Data>& data, const std::string& failureInfo) |
Alexander Afanasyev | b1db7c6 | 2014-04-03 14:57:25 -0700 | [diff] [blame] | 45 | { |
| 46 | BOOST_CHECK(false); |
Yingdi Yu | 40587c0 | 2014-02-21 16:40:48 -0800 | [diff] [blame] | 47 | } |
Yingdi Yu | 9a33535 | 2014-01-31 11:57:46 -0800 | [diff] [blame] | 48 | |
Yingdi Yu | f56c68f | 2014-04-24 21:50:13 -0700 | [diff] [blame] | 49 | BOOST_AUTO_TEST_CASE(Null) |
Yingdi Yu | 9a33535 | 2014-01-31 11:57:46 -0800 | [diff] [blame] | 50 | { |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 51 | Name identity("/TestValidator/Null"); |
| 52 | identity.appendVersion(); |
Alexander Afanasyev | fc99b51 | 2017-01-04 11:10:36 -0800 | [diff] [blame] | 53 | addIdentity(identity, RsaKeyParams()); |
Yingdi Yu | 9a33535 | 2014-01-31 11:57:46 -0800 | [diff] [blame] | 54 | |
| 55 | Name dataName = identity; |
| 56 | dataName.append("1"); |
| 57 | shared_ptr<Data> data = make_shared<Data>(dataName); |
| 58 | |
Yingdi Yu | 1b0311c | 2015-06-10 14:58:47 -0700 | [diff] [blame] | 59 | BOOST_CHECK_NO_THROW(m_keyChain.sign(*data, |
| 60 | security::SigningInfo(security::SigningInfo::SIGNER_TYPE_ID, |
| 61 | identity))); |
Alexander Afanasyev | b1db7c6 | 2014-04-03 14:57:25 -0700 | [diff] [blame] | 62 | |
Yingdi Yu | 9a33535 | 2014-01-31 11:57:46 -0800 | [diff] [blame] | 63 | ValidatorNull validator; |
Alexander Afanasyev | 0222fba | 2014-02-09 23:16:02 -0800 | [diff] [blame] | 64 | |
| 65 | // data must be a shared pointer |
| 66 | validator.validate(*data, |
Yingdi Yu | 96e6406 | 2014-04-15 19:57:33 -0700 | [diff] [blame] | 67 | bind(&onValidated, _1), |
| 68 | bind(&onValidationFailed, _1, _2)); |
Yingdi Yu | 9a33535 | 2014-01-31 11:57:46 -0800 | [diff] [blame] | 69 | } |
| 70 | |
Yingdi Yu | c8f883c | 2014-06-20 23:25:22 -0700 | [diff] [blame] | 71 | const uint8_t ecdsaSigInfo[] = { |
| 72 | 0x16, 0x1b, // SignatureInfo |
| 73 | 0x1b, 0x01, // SignatureType |
| 74 | 0x03, |
| 75 | 0x1c, 0x16, // KeyLocator |
| 76 | 0x07, 0x14, // Name |
| 77 | 0x08, 0x04, |
| 78 | 0x74, 0x65, 0x73, 0x74, |
| 79 | 0x08, 0x03, |
| 80 | 0x6b, 0x65, 0x79, |
| 81 | 0x08, 0x07, |
| 82 | 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x6f, 0x72 |
| 83 | }; |
| 84 | |
| 85 | const uint8_t ecdsaSigValue[] = { |
| 86 | 0x17, 0x40, // SignatureValue |
| 87 | 0x2f, 0xd6, 0xf1, 0x6e, 0x80, 0x6f, 0x10, 0xbe, 0xb1, 0x6f, 0x3e, 0x31, 0xec, |
| 88 | 0xe3, 0xb9, 0xea, 0x83, 0x30, 0x40, 0x03, 0xfc, 0xa0, 0x13, 0xd9, 0xb3, 0xc6, |
| 89 | 0x25, 0x16, 0x2d, 0xa6, 0x58, 0x41, 0x69, 0x62, 0x56, 0xd8, 0xb3, 0x6a, 0x38, |
| 90 | 0x76, 0x56, 0xea, 0x61, 0xb2, 0x32, 0x70, 0x1c, 0xb6, 0x4d, 0x10, 0x1d, 0xdc, |
| 91 | 0x92, 0x8e, 0x52, 0xa5, 0x8a, 0x1d, 0xd9, 0x96, 0x5e, 0xc0, 0x62, 0x0b |
| 92 | }; |
| 93 | |
| 94 | BOOST_AUTO_TEST_CASE(RsaSignatureVerification) |
| 95 | { |
Yingdi Yu | c8f883c | 2014-06-20 23:25:22 -0700 | [diff] [blame] | 96 | Name identity("/TestValidator/RsaSignatureVerification"); |
Alexander Afanasyev | fc99b51 | 2017-01-04 11:10:36 -0800 | [diff] [blame] | 97 | addIdentity(identity, RsaKeyParams()); |
Yingdi Yu | 3ed09d0 | 2014-10-13 16:24:08 -0700 | [diff] [blame] | 98 | Name keyName = m_keyChain.getDefaultKeyNameForIdentity(identity); |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 99 | shared_ptr<v1::PublicKey> publicKey = m_keyChain.getPublicKey(keyName); |
Yingdi Yu | c8f883c | 2014-06-20 23:25:22 -0700 | [diff] [blame] | 100 | |
| 101 | Name identity2("/TestValidator/RsaSignatureVerification/id2"); |
Alexander Afanasyev | fc99b51 | 2017-01-04 11:10:36 -0800 | [diff] [blame] | 102 | addIdentity(identity2, RsaKeyParams()); |
Yingdi Yu | 3ed09d0 | 2014-10-13 16:24:08 -0700 | [diff] [blame] | 103 | Name keyName2 = m_keyChain.getDefaultKeyNameForIdentity(identity2); |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 104 | shared_ptr<v1::PublicKey> publicKey2 = m_keyChain.getPublicKey(keyName2); |
Yingdi Yu | c8f883c | 2014-06-20 23:25:22 -0700 | [diff] [blame] | 105 | |
| 106 | Data data("/TestData/1"); |
Yingdi Yu | 1b0311c | 2015-06-10 14:58:47 -0700 | [diff] [blame] | 107 | BOOST_CHECK_NO_THROW(m_keyChain.sign(data, |
| 108 | security::SigningInfo(security::SigningInfo::SIGNER_TYPE_ID, |
| 109 | identity))); |
Yingdi Yu | c8f883c | 2014-06-20 23:25:22 -0700 | [diff] [blame] | 110 | BOOST_CHECK_EQUAL(Validator::verifySignature(data, *publicKey), true); |
| 111 | BOOST_CHECK_EQUAL(Validator::verifySignature(data, *publicKey2), false); |
| 112 | |
| 113 | Interest interest("/TestInterest/1"); |
Yingdi Yu | 1b0311c | 2015-06-10 14:58:47 -0700 | [diff] [blame] | 114 | BOOST_CHECK_NO_THROW(m_keyChain.sign(interest, |
| 115 | security::SigningInfo(security::SigningInfo::SIGNER_TYPE_ID, |
| 116 | identity))); |
Yingdi Yu | c8f883c | 2014-06-20 23:25:22 -0700 | [diff] [blame] | 117 | BOOST_CHECK_EQUAL(Validator::verifySignature(interest, *publicKey), true); |
| 118 | BOOST_CHECK_EQUAL(Validator::verifySignature(interest, *publicKey2), false); |
| 119 | |
| 120 | Data wrongData("/TestData/2"); |
| 121 | Block ecdsaSigInfoBlock(ecdsaSigInfo, sizeof(ecdsaSigInfo)); |
| 122 | Block ecdsaSigValueBlock(ecdsaSigValue, sizeof(ecdsaSigValue)); |
| 123 | Signature ecdsaSig(ecdsaSigInfoBlock, ecdsaSigValueBlock); |
| 124 | wrongData.setSignature(ecdsaSig); |
| 125 | BOOST_CHECK_EQUAL(Validator::verifySignature(wrongData, *publicKey), false); |
Yingdi Yu | c8f883c | 2014-06-20 23:25:22 -0700 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | const uint8_t rsaSigInfo[] = { |
| 129 | 0x16, 0x1b, // SignatureInfo |
| 130 | 0x1b, 0x01, // SignatureType |
| 131 | 0x01, |
| 132 | 0x1c, 0x16, // KeyLocator |
| 133 | 0x07, 0x14, // Name |
| 134 | 0x08, 0x04, |
| 135 | 0x74, 0x65, 0x73, 0x74, |
| 136 | 0x08, 0x03, |
| 137 | 0x6b, 0x65, 0x79, |
| 138 | 0x08, 0x07, |
| 139 | 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x6f, 0x72 |
| 140 | }; |
| 141 | |
| 142 | const uint8_t rsaSigValue[] = { |
| 143 | 0x17, 0x80, // SignatureValue |
| 144 | 0x2f, 0xd6, 0xf1, 0x6e, 0x80, 0x6f, 0x10, 0xbe, 0xb1, 0x6f, 0x3e, 0x31, 0xec, |
| 145 | 0xe3, 0xb9, 0xea, 0x83, 0x30, 0x40, 0x03, 0xfc, 0xa0, 0x13, 0xd9, 0xb3, 0xc6, |
| 146 | 0x25, 0x16, 0x2d, 0xa6, 0x58, 0x41, 0x69, 0x62, 0x56, 0xd8, 0xb3, 0x6a, 0x38, |
| 147 | 0x76, 0x56, 0xea, 0x61, 0xb2, 0x32, 0x70, 0x1c, 0xb6, 0x4d, 0x10, 0x1d, 0xdc, |
| 148 | 0x92, 0x8e, 0x52, 0xa5, 0x8a, 0x1d, 0xd9, 0x96, 0x5e, 0xc0, 0x62, 0x0b, 0xcf, |
| 149 | 0x3a, 0x9d, 0x7f, 0xca, 0xbe, 0xa1, 0x41, 0x71, 0x85, 0x7a, 0x8b, 0x5d, 0xa9, |
| 150 | 0x64, 0xd6, 0x66, 0xb4, 0xe9, 0x8d, 0x0c, 0x28, 0x43, 0xee, 0xa6, 0x64, 0xe8, |
| 151 | 0x55, 0xf6, 0x1c, 0x19, 0x0b, 0xef, 0x99, 0x25, 0x1e, 0xdc, 0x78, 0xb3, 0xa7, |
| 152 | 0xaa, 0x0d, 0x14, 0x58, 0x30, 0xe5, 0x37, 0x6a, 0x6d, 0xdb, 0x56, 0xac, 0xa3, |
| 153 | 0xfc, 0x90, 0x7a, 0xb8, 0x66, 0x9c, 0x0e, 0xf6, 0xb7, 0x64, 0xd1 |
| 154 | }; |
| 155 | |
| 156 | |
| 157 | BOOST_AUTO_TEST_CASE(EcdsaSignatureVerification) |
| 158 | { |
Yingdi Yu | c8f883c | 2014-06-20 23:25:22 -0700 | [diff] [blame] | 159 | Name identity("/TestValidator/EcdsaSignatureVerification"); |
Spyridon Mastorakis | 1ece2e3 | 2015-08-27 18:52:21 -0700 | [diff] [blame] | 160 | addIdentity(identity, EcKeyParams()); |
Yingdi Yu | 3ed09d0 | 2014-10-13 16:24:08 -0700 | [diff] [blame] | 161 | Name keyName = m_keyChain.getDefaultKeyNameForIdentity(identity); |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 162 | shared_ptr<v1::PublicKey> publicKey = m_keyChain.getPublicKey(keyName); |
Yingdi Yu | c8f883c | 2014-06-20 23:25:22 -0700 | [diff] [blame] | 163 | |
| 164 | Name identity2("/TestValidator/EcdsaSignatureVerification/id2"); |
Spyridon Mastorakis | 1ece2e3 | 2015-08-27 18:52:21 -0700 | [diff] [blame] | 165 | addIdentity(identity2, EcKeyParams()); |
Yingdi Yu | 3ed09d0 | 2014-10-13 16:24:08 -0700 | [diff] [blame] | 166 | Name keyName2 = m_keyChain.getDefaultKeyNameForIdentity(identity2); |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 167 | shared_ptr<v1::PublicKey> publicKey2 = m_keyChain.getPublicKey(keyName2); |
Yingdi Yu | c8f883c | 2014-06-20 23:25:22 -0700 | [diff] [blame] | 168 | |
| 169 | |
| 170 | Data data("/TestData/1"); |
Yingdi Yu | 1b0311c | 2015-06-10 14:58:47 -0700 | [diff] [blame] | 171 | BOOST_CHECK_NO_THROW(m_keyChain.sign(data, |
| 172 | security::SigningInfo(security::SigningInfo::SIGNER_TYPE_ID, |
| 173 | identity))); |
Yingdi Yu | c8f883c | 2014-06-20 23:25:22 -0700 | [diff] [blame] | 174 | BOOST_CHECK_EQUAL(Validator::verifySignature(data, *publicKey), true); |
| 175 | BOOST_CHECK_EQUAL(Validator::verifySignature(data, *publicKey2), false); |
| 176 | |
| 177 | Interest interest("/TestInterest/1"); |
Yingdi Yu | 1b0311c | 2015-06-10 14:58:47 -0700 | [diff] [blame] | 178 | BOOST_CHECK_NO_THROW(m_keyChain.sign(interest, |
| 179 | security::SigningInfo(security::SigningInfo::SIGNER_TYPE_ID, |
| 180 | identity))); |
Yingdi Yu | c8f883c | 2014-06-20 23:25:22 -0700 | [diff] [blame] | 181 | BOOST_CHECK_EQUAL(Validator::verifySignature(interest, *publicKey), true); |
| 182 | BOOST_CHECK_EQUAL(Validator::verifySignature(interest, *publicKey2), false); |
| 183 | |
| 184 | Data wrongData("/TestData/2"); |
| 185 | Block rsaSigInfoBlock(rsaSigInfo, sizeof(rsaSigInfo)); |
| 186 | Block rsaSigValueBlock(rsaSigValue, sizeof(rsaSigValue)); |
| 187 | Signature rsaSig(rsaSigInfoBlock, rsaSigValueBlock); |
| 188 | wrongData.setSignature(rsaSig); |
| 189 | BOOST_CHECK_EQUAL(Validator::verifySignature(wrongData, *publicKey), false); |
Yingdi Yu | c8f883c | 2014-06-20 23:25:22 -0700 | [diff] [blame] | 190 | } |
| 191 | |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 192 | BOOST_AUTO_TEST_CASE(EcdsaSignatureVerification2) |
| 193 | { |
Spyridon Mastorakis | 1ece2e3 | 2015-08-27 18:52:21 -0700 | [diff] [blame] | 194 | Name ecIdentity("/SecurityTestValidator/EcdsaSignatureVerification2/ec"); |
| 195 | addIdentity(ecIdentity, EcKeyParams()); |
| 196 | Name ecCertName = m_keyChain.getDefaultCertificateNameForIdentity(ecIdentity); |
| 197 | shared_ptr<v1::IdentityCertificate> ecCert = m_keyChain.getCertificate(ecCertName); |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 198 | |
| 199 | Name rsaIdentity("/SecurityTestValidator/EcdsaSignatureVerification2/rsa"); |
Alexander Afanasyev | fc99b51 | 2017-01-04 11:10:36 -0800 | [diff] [blame] | 200 | addIdentity(rsaIdentity, RsaKeyParams()); |
Yingdi Yu | 3ed09d0 | 2014-10-13 16:24:08 -0700 | [diff] [blame] | 201 | Name rsaCertName = m_keyChain.getDefaultCertificateNameForIdentity(rsaIdentity); |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 202 | shared_ptr<v1::IdentityCertificate> rsaCert = m_keyChain.getCertificate(rsaCertName); |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 203 | |
| 204 | Name packetName("/Test/Packet/Name"); |
| 205 | |
| 206 | shared_ptr<Data> testDataRsa = make_shared<Data>(packetName); |
Yingdi Yu | 1b0311c | 2015-06-10 14:58:47 -0700 | [diff] [blame] | 207 | m_keyChain.sign(*testDataRsa, |
| 208 | security::SigningInfo(security::SigningInfo::SIGNER_TYPE_ID, |
| 209 | rsaIdentity)); |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 210 | shared_ptr<Data> testDataEcdsa = make_shared<Data>(packetName); |
Yingdi Yu | 1b0311c | 2015-06-10 14:58:47 -0700 | [diff] [blame] | 211 | m_keyChain.sign(*testDataEcdsa, |
| 212 | security::SigningInfo(security::SigningInfo::SIGNER_TYPE_ID, |
Spyridon Mastorakis | 1ece2e3 | 2015-08-27 18:52:21 -0700 | [diff] [blame] | 213 | ecIdentity)); |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 214 | shared_ptr<Interest> testInterestRsa = make_shared<Interest>(packetName); |
Yingdi Yu | 1b0311c | 2015-06-10 14:58:47 -0700 | [diff] [blame] | 215 | m_keyChain.sign(*testInterestRsa, |
| 216 | security::SigningInfo(security::SigningInfo::SIGNER_TYPE_ID, |
| 217 | rsaIdentity)); |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 218 | shared_ptr<Interest> testInterestEcdsa = make_shared<Interest>(packetName); |
Yingdi Yu | 1b0311c | 2015-06-10 14:58:47 -0700 | [diff] [blame] | 219 | m_keyChain.sign(*testInterestEcdsa, |
| 220 | security::SigningInfo(security::SigningInfo::SIGNER_TYPE_ID, |
Spyridon Mastorakis | 1ece2e3 | 2015-08-27 18:52:21 -0700 | [diff] [blame] | 221 | ecIdentity)); |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 222 | |
Spyridon Mastorakis | 1ece2e3 | 2015-08-27 18:52:21 -0700 | [diff] [blame] | 223 | BOOST_CHECK(Validator::verifySignature(*ecCert, ecCert->getPublicKeyInfo())); |
| 224 | BOOST_CHECK_EQUAL(Validator::verifySignature(*ecCert, rsaCert->getPublicKeyInfo()), false); |
| 225 | BOOST_CHECK_EQUAL(Validator::verifySignature(*rsaCert, ecCert->getPublicKeyInfo()), false); |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 226 | BOOST_CHECK(Validator::verifySignature(*rsaCert, rsaCert->getPublicKeyInfo())); |
| 227 | |
Spyridon Mastorakis | 1ece2e3 | 2015-08-27 18:52:21 -0700 | [diff] [blame] | 228 | BOOST_CHECK(Validator::verifySignature(*testDataEcdsa, ecCert->getPublicKeyInfo())); |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 229 | BOOST_CHECK_EQUAL(Validator::verifySignature(*testDataEcdsa, rsaCert->getPublicKeyInfo()), false); |
Spyridon Mastorakis | 1ece2e3 | 2015-08-27 18:52:21 -0700 | [diff] [blame] | 230 | BOOST_CHECK_EQUAL(Validator::verifySignature(*testDataRsa, ecCert->getPublicKeyInfo()), false); |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 231 | BOOST_CHECK(Validator::verifySignature(*testDataRsa, rsaCert->getPublicKeyInfo())); |
| 232 | |
Spyridon Mastorakis | 1ece2e3 | 2015-08-27 18:52:21 -0700 | [diff] [blame] | 233 | BOOST_CHECK(Validator::verifySignature(*testInterestEcdsa, ecCert->getPublicKeyInfo())); |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 234 | BOOST_CHECK_EQUAL(Validator::verifySignature(*testInterestEcdsa, rsaCert->getPublicKeyInfo()), |
| 235 | false); |
Spyridon Mastorakis | 1ece2e3 | 2015-08-27 18:52:21 -0700 | [diff] [blame] | 236 | BOOST_CHECK_EQUAL(Validator::verifySignature(*testInterestRsa, ecCert->getPublicKeyInfo()), |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 237 | false); |
| 238 | BOOST_CHECK(Validator::verifySignature(*testInterestRsa, rsaCert->getPublicKeyInfo())); |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 239 | } |
| 240 | |
Junxiao Shi | 198c381 | 2016-08-12 19:24:18 +0000 | [diff] [blame] | 241 | BOOST_AUTO_TEST_CASE(MalformedInterestSigInfo) |
| 242 | { |
| 243 | auto interest = make_shared<Interest>("/prefix"); |
| 244 | m_keyChain.sign(*interest); |
| 245 | |
| 246 | setNameComponent(*interest, signed_interest::POS_SIG_INFO, "not-SignatureInfo"); |
| 247 | |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 248 | v1::PublicKey pubkey = m_keyChain.getDefaultCertificate()->getPublicKeyInfo(); |
Junxiao Shi | 198c381 | 2016-08-12 19:24:18 +0000 | [diff] [blame] | 249 | BOOST_CHECK_EQUAL(Validator::verifySignature(*interest, pubkey), false); |
| 250 | } |
| 251 | |
| 252 | BOOST_AUTO_TEST_CASE(MalformedInterestSigValue) |
| 253 | { |
| 254 | auto interest = make_shared<Interest>("/prefix"); |
| 255 | m_keyChain.sign(*interest); |
| 256 | |
| 257 | setNameComponent(*interest, signed_interest::POS_SIG_VALUE, "bad-signature-bits"); |
| 258 | |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 259 | v1::PublicKey pubkey = m_keyChain.getDefaultCertificate()->getPublicKeyInfo(); |
Junxiao Shi | 198c381 | 2016-08-12 19:24:18 +0000 | [diff] [blame] | 260 | BOOST_CHECK_EQUAL(Validator::verifySignature(*interest, pubkey), false); |
| 261 | } |
| 262 | |
| 263 | BOOST_AUTO_TEST_SUITE_END() // TestValidator |
| 264 | BOOST_AUTO_TEST_SUITE_END() // Security |
Yingdi Yu | 9a33535 | 2014-01-31 11:57:46 -0800 | [diff] [blame] | 265 | |
Spyridon Mastorakis | 429634f | 2015-02-19 17:35:33 -0800 | [diff] [blame] | 266 | } // namespace tests |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 267 | } // namespace security |
Yingdi Yu | 9a33535 | 2014-01-31 11:57:46 -0800 | [diff] [blame] | 268 | } // namespace ndn |