blob: 8b5e11d5447ebe987555e3603f6d2f8159393f3d [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento10b24be2017-07-12 23:23:46 -04002/*
Eric Newberrya3c8bd12020-05-15 17:27:07 -07003 * Copyright (c) 2013-2020 Regents of the University of California.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * 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 Yu21157162014-02-28 13:02:34 -080020 */
21
Davide Pesavento7e780642018-11-24 15:51:34 -050022#include "ndn-cxx/security/digest-sha256.hpp"
23#include "ndn-cxx/security/verification-helpers.hpp"
24#include "ndn-cxx/util/sha256.hpp"
25#include "ndn-cxx/util/string-helper.hpp"
Alexander Afanasyev8828ca62015-07-02 13:40:09 -070026
Davide Pesavento7e780642018-11-24 15:51:34 -050027#include "tests/boost-test.hpp"
28#include "tests/identity-management-fixture.hpp"
Alexander Afanasyevb1db7c62014-04-03 14:57:25 -070029
Yingdi Yu21157162014-02-28 13:02:34 -080030namespace ndn {
Alexander Afanasyevadc71842017-01-26 22:17:58 -050031namespace security {
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080032namespace tests {
Yingdi Yu21157162014-02-28 13:02:34 -080033
Alexander Afanasyevadc71842017-01-26 22:17:58 -050034using namespace ndn::tests;
35
Davide Pesaventoeee3e822016-11-26 19:19:34 +010036BOOST_AUTO_TEST_SUITE(Security)
37BOOST_FIXTURE_TEST_SUITE(TestDigestSha256, IdentityManagementFixture)
Yingdi Yu21157162014-02-28 13:02:34 -080038
Yingdi Yu4a557052014-07-09 16:40:37 -070039BOOST_AUTO_TEST_CASE(Sha256)
Yingdi Yu21157162014-02-28 13:02:34 -080040{
Yingdi Yu21157162014-02-28 13:02:34 -080041 char content[6] = "1234\n";
Davide Pesavento10b24be2017-07-12 23:23:46 -040042 ConstBufferPtr buf = util::Sha256::computeDigest(reinterpret_cast<uint8_t*>(content), 5);
Yingdi Yu21157162014-02-28 13:02:34 -080043
Davide Pesavento5d0b0102017-10-07 13:43:16 -040044 BOOST_CHECK_EQUAL(toHex(buf->data(), buf->size(), false),
Davide Pesaventoeee3e822016-11-26 19:19:34 +010045 "a883dafc480d466ee04e0d6da986bd78eb1fdd2178d04693723da3a8f95d42f4");
Yingdi Yu21157162014-02-28 13:02:34 -080046}
47
Yingdi Yu6ab67812014-11-27 15:00:34 -080048BOOST_AUTO_TEST_CASE(DataSignature)
Yingdi Yu21157162014-02-28 13:02:34 -080049{
Yingdi Yu21157162014-02-28 13:02:34 -080050 Name name("/TestSignatureSha/Basic");
51 Data testData(name);
52 char content[5] = "1234";
53 testData.setContent(reinterpret_cast<uint8_t*>(content), 5);
Yingdi Yu1b0311c2015-06-10 14:58:47 -070054 m_keyChain.sign(testData, security::SigningInfo(security::SigningInfo::SIGNER_TYPE_SHA256));
Yingdi Yu21157162014-02-28 13:02:34 -080055
Eric Newberrya3c8bd12020-05-15 17:27:07 -070056 BOOST_CHECK_THROW(testData.getSignatureInfo().getKeyLocator(), ndn::SignatureInfo::Error);
Alexander Afanasyevadc71842017-01-26 22:17:58 -050057 verifyDigest(testData, DigestAlgorithm::SHA256);
Yingdi Yu21157162014-02-28 13:02:34 -080058}
59
Yingdi Yu6ab67812014-11-27 15:00:34 -080060BOOST_AUTO_TEST_CASE(InterestSignature)
61{
62 Name name("/SecurityTestDigestSha256/InterestSignature/Interest1");
63 Interest testInterest(name);
64
Yingdi Yu1b0311c2015-06-10 14:58:47 -070065 m_keyChain.sign(testInterest, security::SigningInfo(security::SigningInfo::SIGNER_TYPE_SHA256));
Alexander Afanasyevadc71842017-01-26 22:17:58 -050066 verifyDigest(testInterest, DigestAlgorithm::SHA256);
Yingdi Yu6ab67812014-11-27 15:00:34 -080067}
68
Davide Pesaventoeee3e822016-11-26 19:19:34 +010069BOOST_AUTO_TEST_SUITE_END() // TestDigestSha256
70BOOST_AUTO_TEST_SUITE_END() // Security
Yingdi Yu21157162014-02-28 13:02:34 -080071
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080072} // namespace tests
Alexander Afanasyevadc71842017-01-26 22:17:58 -050073} // namespace security
Yingdi Yu21157162014-02-28 13:02:34 -080074} // namespace ndn