blob: ebf50c72d2a6c6365e1367407b861a0ad845c7a7 [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Yingdi Yu21157162014-02-28 13:02:34 -08002/**
Spyridon Mastorakis429634f2015-02-19 17:35:33 -08003 * Copyright (c) 2013-2015 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
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080022#include "security/digest-sha256.hpp"
Yingdi Yu21157162014-02-28 13:02:34 -080023#include "security/key-chain.hpp"
24#include "security/validator.hpp"
Junxiao Shi482ccc52014-03-31 13:05:24 -070025#include "security/cryptopp.hpp"
Yingdi Yu6ab67812014-11-27 15:00:34 -080026#include "identity-management-fixture.hpp"
Alexander Afanasyevb1db7c62014-04-03 14:57:25 -070027#include "boost-test.hpp"
28
Yingdi Yu21157162014-02-28 13:02:34 -080029namespace ndn {
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080030namespace tests {
Yingdi Yu21157162014-02-28 13:02:34 -080031
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080032BOOST_FIXTURE_TEST_SUITE(SecurityDigestSha256, security::IdentityManagementFixture)
Yingdi Yu21157162014-02-28 13:02:34 -080033
Yingdi Yu4a557052014-07-09 16:40:37 -070034std::string SHA256_RESULT("a883dafc480d466ee04e0d6da986bd78eb1fdd2178d04693723da3a8f95d42f4");
Yingdi Yu21157162014-02-28 13:02:34 -080035
Yingdi Yu4a557052014-07-09 16:40:37 -070036BOOST_AUTO_TEST_CASE(Sha256)
Yingdi Yu21157162014-02-28 13:02:34 -080037{
38 using namespace CryptoPP;
39
40 char content[6] = "1234\n";
41 ConstBufferPtr buf = crypto::sha256(reinterpret_cast<uint8_t*>(content), 5);
Yingdi Yu4a557052014-07-09 16:40:37 -070042 std::string result;
Yingdi Yu21157162014-02-28 13:02:34 -080043 StringSource(buf->buf(), buf->size(), true, new HexEncoder(new StringSink(result), false));
44
Yingdi Yu4a557052014-07-09 16:40:37 -070045 BOOST_CHECK_EQUAL(SHA256_RESULT, result);
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{
50 using namespace CryptoPP;
51
52 Name name("/TestSignatureSha/Basic");
53 Data testData(name);
54 char content[5] = "1234";
55 testData.setContent(reinterpret_cast<uint8_t*>(content), 5);
Alexander Afanasyevb1db7c62014-04-03 14:57:25 -070056
Yingdi Yu1b0311c2015-06-10 14:58:47 -070057 m_keyChain.sign(testData, security::SigningInfo(security::SigningInfo::SIGNER_TYPE_SHA256));
Yingdi Yu21157162014-02-28 13:02:34 -080058
59 testData.wireEncode();
60
Yingdi Yubf6a2812014-06-17 15:32:11 -070061 DigestSha256 sig(testData.getSignature());
Alexander Afanasyevb1db7c62014-04-03 14:57:25 -070062
Yingdi Yu4a557052014-07-09 16:40:37 -070063 BOOST_CHECK(Validator::verifySignature(testData, sig));
64
65 BOOST_CHECK_THROW(sig.getKeyLocator(), ndn::SignatureInfo::Error);
Yingdi Yu21157162014-02-28 13:02:34 -080066}
67
Yingdi Yu6ab67812014-11-27 15:00:34 -080068BOOST_AUTO_TEST_CASE(InterestSignature)
69{
70 Name name("/SecurityTestDigestSha256/InterestSignature/Interest1");
71 Interest testInterest(name);
72
Yingdi Yu1b0311c2015-06-10 14:58:47 -070073 m_keyChain.sign(testInterest, security::SigningInfo(security::SigningInfo::SIGNER_TYPE_SHA256));
Yingdi Yu6ab67812014-11-27 15:00:34 -080074 testInterest.wireEncode();
75 const Name& signedName = testInterest.getName();
76
77 Signature signature(signedName[signed_interest::POS_SIG_INFO].blockFromValue(),
78 signedName[signed_interest::POS_SIG_VALUE].blockFromValue());
79 DigestSha256 sig(signature);
80 BOOST_CHECK(Validator::verifySignature(testInterest, sig));
81}
82
Yingdi Yu21157162014-02-28 13:02:34 -080083BOOST_AUTO_TEST_SUITE_END()
84
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080085} // namespace tests
Yingdi Yu21157162014-02-28 13:02:34 -080086} // namespace ndn