blob: abf15a21e1acc44b2205cba746b8cd3d4704a449 [file] [log] [blame]
Yingdi Yuebfa4cb2014-06-17 15:28:53 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento0f830802018-01-16 23:58:58 -05002/*
3 * Copyright (c) 2013-2018 Regents of the University of California.
Yingdi Yuebfa4cb2014-06-17 15:28:53 -07004 *
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
Davide Pesavento7e780642018-11-24 15:51:34 -050022#include "ndn-cxx/security/signature-sha256-with-ecdsa.hpp"
23#include "ndn-cxx/security/verification-helpers.hpp"
24#include "ndn-cxx/util/scheduler.hpp"
Davide Pesaventoeee3e822016-11-26 19:19:34 +010025
Davide Pesavento7e780642018-11-24 15:51:34 -050026#include "tests/boost-test.hpp"
27#include "tests/make-interest-data.hpp"
28#include "tests/unit/identity-management-time-fixture.hpp"
Yingdi Yuebfa4cb2014-06-17 15:28:53 -070029
30namespace ndn {
Alexander Afanasyev70244f42017-01-04 12:47:12 -080031namespace security {
Yingdi Yu6ab67812014-11-27 15:00:34 -080032namespace tests {
Yingdi Yuebfa4cb2014-06-17 15:28:53 -070033
Alexander Afanasyev70244f42017-01-04 12:47:12 -080034using namespace ndn::tests;
35
Davide Pesaventoeee3e822016-11-26 19:19:34 +010036class SignatureSha256EcdsaTimeFixture : public IdentityManagementTimeFixture
Yingdi Yu6ab67812014-11-27 15:00:34 -080037{
38public:
39 SignatureSha256EcdsaTimeFixture()
40 : scheduler(io)
41 {
42 }
43
44public:
45 Scheduler scheduler;
46};
47
Davide Pesaventoeee3e822016-11-26 19:19:34 +010048BOOST_AUTO_TEST_SUITE(Security)
49BOOST_FIXTURE_TEST_SUITE(TestSignatureSha256WithEcdsa, SignatureSha256EcdsaTimeFixture)
Yingdi Yuebfa4cb2014-06-17 15:28:53 -070050
51const uint8_t sigInfo[] = {
Alexander Afanasyev70244f42017-01-04 12:47:12 -080052 0x16, 0x1b, // SignatureInfo
53 0x1b, 0x01, // SignatureType
54 0x03,
55 0x1c, 0x16, // KeyLocator
56 0x07, 0x14, // Name: /test/key/locator
57 0x08, 0x04,
58 0x74, 0x65, 0x73, 0x74,
59 0x08, 0x03,
60 0x6b, 0x65, 0x79,
61 0x08, 0x07,
62 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x6f, 0x72
Yingdi Yuebfa4cb2014-06-17 15:28:53 -070063};
64
65const uint8_t sigValue[] = {
Alexander Afanasyev70244f42017-01-04 12:47:12 -080066 0x17, 0x40, // SignatureValue
67 0x2f, 0xd6, 0xf1, 0x6e, 0x80, 0x6f, 0x10, 0xbe, 0xb1, 0x6f, 0x3e, 0x31, 0xec,
68 0xe3, 0xb9, 0xea, 0x83, 0x30, 0x40, 0x03, 0xfc, 0xa0, 0x13, 0xd9, 0xb3, 0xc6,
69 0x25, 0x16, 0x2d, 0xa6, 0x58, 0x41, 0x69, 0x62, 0x56, 0xd8, 0xb3, 0x6a, 0x38,
70 0x76, 0x56, 0xea, 0x61, 0xb2, 0x32, 0x70, 0x1c, 0xb6, 0x4d, 0x10, 0x1d, 0xdc,
71 0x92, 0x8e, 0x52, 0xa5, 0x8a, 0x1d, 0xd9, 0x96, 0x5e, 0xc0, 0x62, 0x0b
Yingdi Yuebfa4cb2014-06-17 15:28:53 -070072};
73
74
75BOOST_AUTO_TEST_CASE(Decoding)
76{
77 Block sigInfoBlock(sigInfo, sizeof(sigInfo));
78 Block sigValueBlock(sigValue, sizeof(sigValue));
79
80 Signature sig(sigInfoBlock, sigValueBlock);
Davide Pesavento8a8c01b2018-03-11 00:07:52 -050081 BOOST_CHECK_NO_THROW(SignatureSha256WithEcdsa{sig});
Yingdi Yu4a557052014-07-09 16:40:37 -070082 BOOST_CHECK_NO_THROW(sig.getKeyLocator());
Yingdi Yuebfa4cb2014-06-17 15:28:53 -070083}
84
85BOOST_AUTO_TEST_CASE(Encoding)
86{
Yingdi Yuebfa4cb2014-06-17 15:28:53 -070087 Name name("/test/key/locator");
88 KeyLocator keyLocator(name);
89
Yingdi Yu4a557052014-07-09 16:40:37 -070090 SignatureSha256WithEcdsa sig(keyLocator);
91
92 BOOST_CHECK_NO_THROW(sig.getKeyLocator());
Yingdi Yuebfa4cb2014-06-17 15:28:53 -070093
94 const Block& encodeSigInfoBlock = sig.getInfo();
95
96 Block sigInfoBlock(sigInfo, sizeof(sigInfo));
97
98 BOOST_CHECK_EQUAL_COLLECTIONS(sigInfoBlock.wire(),
99 sigInfoBlock.wire() + sigInfoBlock.size(),
100 encodeSigInfoBlock.wire(),
101 encodeSigInfoBlock.wire() + encodeSigInfoBlock.size());
Alexander Afanasyev1c6976d2014-07-13 11:40:50 -0700102
103 sig.setKeyLocator(Name("/test/another/key/locator"));
104
105 const Block& encodeSigInfoBlock2 = sig.getInfo();
Junxiao Shi72c0c642018-04-20 15:41:09 +0000106 BOOST_CHECK_NE(sigInfoBlock, encodeSigInfoBlock2);
Yingdi Yuebfa4cb2014-06-17 15:28:53 -0700107}
108
Yingdi Yu6ab67812014-11-27 15:00:34 -0800109BOOST_AUTO_TEST_CASE(DataSignature)
110{
Spyridon Mastorakis1ece2e32015-08-27 18:52:21 -0700111 Identity identity = addIdentity("/SecurityTestSignatureSha256WithEcdsa/DataSignature", EcKeyParams());
Yingdi Yu6ab67812014-11-27 15:00:34 -0800112
113 Data testData("/SecurityTestSignatureSha256WithEcdsa/DataSignature/Data1");
114 char content[5] = "1234";
115 testData.setContent(reinterpret_cast<uint8_t*>(content), 5);
Alexander Afanasyev70244f42017-01-04 12:47:12 -0800116 BOOST_CHECK_NO_THROW(m_keyChain.sign(testData, security::SigningInfo(identity)));
Yingdi Yu6ab67812014-11-27 15:00:34 -0800117 Block dataBlock(testData.wireEncode().wire(), testData.wireEncode().size());
118
119 Data testData2;
120 testData2.wireDecode(dataBlock);
Alexander Afanasyev574aa862017-01-10 19:53:28 -0800121 BOOST_CHECK(verifySignature(testData2, identity.getDefaultKey()));
Yingdi Yu6ab67812014-11-27 15:00:34 -0800122}
123
Yingdi Yu6ab67812014-11-27 15:00:34 -0800124BOOST_AUTO_TEST_CASE(InterestSignature)
125{
Spyridon Mastorakis1ece2e32015-08-27 18:52:21 -0700126 Identity identity = addIdentity("/SecurityTestSignatureSha256WithEcdsa/InterestSignature", EcKeyParams());
Yingdi Yu6ab67812014-11-27 15:00:34 -0800127
Junxiao Shib55e5d32018-07-18 13:32:00 -0600128 auto interest = makeInterest("/SecurityTestSignatureSha256WithEcdsa/InterestSignature/Interest1");
129 auto interest11 = makeInterest("/SecurityTestSignatureSha256WithEcdsa/InterestSignature/Interest1");
Yingdi Yu6ab67812014-11-27 15:00:34 -0800130
Davide Pesavento0f830802018-01-16 23:58:58 -0500131 scheduler.scheduleEvent(100_ms, [&] {
Junxiao Shib55e5d32018-07-18 13:32:00 -0600132 m_keyChain.sign(*interest, security::SigningInfo(identity));
Yingdi Yu6ab67812014-11-27 15:00:34 -0800133 });
134
Davide Pesavento0f830802018-01-16 23:58:58 -0500135 advanceClocks(100_ms);
136 scheduler.scheduleEvent(100_ms, [&] {
Junxiao Shib55e5d32018-07-18 13:32:00 -0600137 m_keyChain.sign(*interest11, security::SigningInfo(identity));
Yingdi Yu6ab67812014-11-27 15:00:34 -0800138 });
139
Davide Pesavento0f830802018-01-16 23:58:58 -0500140 advanceClocks(100_ms);
Yingdi Yu6ab67812014-11-27 15:00:34 -0800141
Junxiao Shib55e5d32018-07-18 13:32:00 -0600142 Block interestBlock(interest->wireEncode().wire(), interest->wireEncode().size());
Yingdi Yu6ab67812014-11-27 15:00:34 -0800143
144 Interest interest2;
145 interest2.wireDecode(interestBlock);
Alexander Afanasyev574aa862017-01-10 19:53:28 -0800146 BOOST_CHECK(verifySignature(interest2, identity.getDefaultKey()));
Yingdi Yu6ab67812014-11-27 15:00:34 -0800147}
148
Davide Pesaventoeee3e822016-11-26 19:19:34 +0100149BOOST_AUTO_TEST_SUITE_END() // TestSignatureSha256WithEcdsa
150BOOST_AUTO_TEST_SUITE_END() // Security
Yingdi Yuebfa4cb2014-06-17 15:28:53 -0700151
Yingdi Yu6ab67812014-11-27 15:00:34 -0800152} // namespace tests
Alexander Afanasyev70244f42017-01-04 12:47:12 -0800153} // namespace security
Yingdi Yuebfa4cb2014-06-17 15:28:53 -0700154} // namespace ndn