blob: d572ecc6ed0a8c600a1cc11ee6984b4ee2ce512e [file] [log] [blame]
Yingdi Yu202a2e92015-07-12 16:49:25 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento1c31a712017-09-15 00:52:03 -04002/*
Davide Pesavento765abc92021-12-27 00:44:04 -05003 * Copyright (c) 2013-2021 Regents of the University of California.
Yingdi Yu202a2e92015-07-12 16:49:25 -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/transform/public-key.hpp"
Yingdi Yu202a2e92015-07-12 16:49:25 -070023
Davide Pesavento7e780642018-11-24 15:51:34 -050024#include "ndn-cxx/encoding/buffer-stream.hpp"
Davide Pesavento765abc92021-12-27 00:44:04 -050025#include "ndn-cxx/security/transform/base64-decode.hpp"
26#include "ndn-cxx/security/transform/buffer-source.hpp"
27#include "ndn-cxx/security/transform/stream-sink.hpp"
Davide Pesavento1c31a712017-09-15 00:52:03 -040028
Davide Pesavento7e780642018-11-24 15:51:34 -050029#include "tests/boost-test.hpp"
30
Davide Pesavento1c31a712017-09-15 00:52:03 -040031#include <boost/mpl/vector.hpp>
32
33#include <sstream>
Yingdi Yu202a2e92015-07-12 16:49:25 -070034
35namespace ndn {
36namespace security {
37namespace transform {
38namespace tests {
39
40BOOST_AUTO_TEST_SUITE(Security)
41BOOST_AUTO_TEST_SUITE(Transform)
42BOOST_AUTO_TEST_SUITE(TestPublicKey)
43
Davide Pesavento1c31a712017-09-15 00:52:03 -040044struct RsaKeyTestData
Yingdi Yu202a2e92015-07-12 16:49:25 -070045{
Davide Pesavento1c31a712017-09-15 00:52:03 -040046 const std::string publicKeyPkcs8 =
Yingdi Yu202a2e92015-07-12 16:49:25 -070047 "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAw0WM1/WhAxyLtEqsiAJg\n"
48 "WDZWuzkYpeYVdeeZcqRZzzfRgBQTsNozS5t4HnwTZhwwXbH7k3QN0kRTV826Xobw\n"
49 "s3iigohnM9yTK+KKiayPhIAm/+5HGT6SgFJhYhqo1/upWdueojil6RP4/AgavHho\n"
50 "pxlAVbk6G9VdVnlQcQ5Zv0OcGi73c+EnYD/YgURYGSngUi/Ynsh779p2U69/te9g\n"
51 "ZwIL5PuE9BiO6I39cL9z7EK1SfZhOWvDe/qH7YhD/BHwcWit8FjRww1glwRVTJsA\n"
52 "9rH58ynaAix0tcR/nBMRLUX+e3rURHg6UbSjJbdb9qmKM1fTGHKUzL/5pMG6uBU0\n"
53 "ywIDAQAB\n";
Yingdi Yu202a2e92015-07-12 16:49:25 -070054};
55
Davide Pesavento1c31a712017-09-15 00:52:03 -040056struct EcKeyTestData
Yingdi Yu202a2e92015-07-12 16:49:25 -070057{
Davide Pesavento1c31a712017-09-15 00:52:03 -040058 const std::string publicKeyPkcs8 =
Yingdi Yu202a2e92015-07-12 16:49:25 -070059 "MIIBSzCCAQMGByqGSM49AgEwgfcCAQEwLAYHKoZIzj0BAQIhAP////8AAAABAAAA\n"
60 "AAAAAAAAAAAA////////////////MFsEIP////8AAAABAAAAAAAAAAAAAAAA////\n"
61 "///////////8BCBaxjXYqjqT57PrvVV2mIa8ZR0GsMxTsPY7zjw+J9JgSwMVAMSd\n"
62 "NgiG5wSTamZ44ROdJreBn36QBEEEaxfR8uEsQkf4vOblY6RA8ncDfYEt6zOg9KE5\n"
63 "RdiYwpZP40Li/hp/m47n60p8D54WK84zV2sxXs7LtkBoN79R9QIhAP////8AAAAA\n"
64 "//////////+85vqtpxeehPO5ysL8YyVRAgEBA0IABGhuFibgwLdEJBDOLdvSg1Hc\n"
65 "5EJTDxq6ls5FoYLfThp8HOjuwGSz0qw8ocMqyku1y0V5peQ4rEPd0bwcpZd9svA=\n";
Yingdi Yu202a2e92015-07-12 16:49:25 -070066};
67
Davide Pesavento1c31a712017-09-15 00:52:03 -040068using KeyTestDataSets = boost::mpl::vector<RsaKeyTestData, EcKeyTestData>;
Yingdi Yu202a2e92015-07-12 16:49:25 -070069
Davide Pesavento1c31a712017-09-15 00:52:03 -040070BOOST_AUTO_TEST_CASE_TEMPLATE(SaveLoad, T, KeyTestDataSets)
Yingdi Yu202a2e92015-07-12 16:49:25 -070071{
72 T dataSet;
73
Davide Pesavento765abc92021-12-27 00:44:04 -050074 auto pKeyPkcs8Base64 = reinterpret_cast<const uint8_t*>(dataSet.publicKeyPkcs8.data());
Yingdi Yu202a2e92015-07-12 16:49:25 -070075 size_t pKeyPkcs8Base64Len = dataSet.publicKeyPkcs8.size();
Yingdi Yu202a2e92015-07-12 16:49:25 -070076 OBufferStream os;
Davide Pesavento765abc92021-12-27 00:44:04 -050077 bufferSource(make_span(pKeyPkcs8Base64, pKeyPkcs8Base64Len)) >> base64Decode() >> streamSink(os);
78 auto pKeyPkcs8 = os.buf();
Yingdi Yu202a2e92015-07-12 16:49:25 -070079
80 PublicKey pKey1;
Davide Pesavento765abc92021-12-27 00:44:04 -050081 BOOST_CHECK_NO_THROW(pKey1.loadPkcs8Base64({pKeyPkcs8Base64, pKeyPkcs8Base64Len}));
Yingdi Yu202a2e92015-07-12 16:49:25 -070082
83 std::stringstream ss2(dataSet.publicKeyPkcs8);
84 PublicKey pKey2;
Davide Pesavento1c31a712017-09-15 00:52:03 -040085 BOOST_CHECK_NO_THROW(pKey2.loadPkcs8Base64(ss2));
Yingdi Yu202a2e92015-07-12 16:49:25 -070086
87 PublicKey pKey3;
Davide Pesavento765abc92021-12-27 00:44:04 -050088 BOOST_CHECK_NO_THROW(pKey3.loadPkcs8(*pKeyPkcs8));
Yingdi Yu202a2e92015-07-12 16:49:25 -070089
90 std::stringstream ss4;
Davide Pesavento765abc92021-12-27 00:44:04 -050091 ss4.write(reinterpret_cast<const char*>(pKeyPkcs8->data()), pKeyPkcs8->size());
Yingdi Yu202a2e92015-07-12 16:49:25 -070092 PublicKey pKey4;
Davide Pesavento1c31a712017-09-15 00:52:03 -040093 BOOST_CHECK_NO_THROW(pKey4.loadPkcs8(ss4));
Yingdi Yu202a2e92015-07-12 16:49:25 -070094
95 OBufferStream os5;
96 BOOST_REQUIRE_NO_THROW(pKey1.savePkcs8Base64(os5));
97 BOOST_CHECK_EQUAL_COLLECTIONS(pKeyPkcs8Base64, pKeyPkcs8Base64 + pKeyPkcs8Base64Len,
98 os5.buf()->begin(), os5.buf()->end());
99
100 OBufferStream os6;
101 BOOST_REQUIRE_NO_THROW(pKey1.savePkcs8(os6));
Davide Pesavento765abc92021-12-27 00:44:04 -0500102 BOOST_CHECK_EQUAL_COLLECTIONS(pKeyPkcs8->begin(), pKeyPkcs8->end(),
Yingdi Yu202a2e92015-07-12 16:49:25 -0700103 os6.buf()->begin(), os6.buf()->end());
104}
105
Davide Pesavento1c31a712017-09-15 00:52:03 -0400106// NOTE: We cannot test RSA encryption by comparing the computed ciphertext to
107// a known-good one, because OAEP padding is randomized and would produce
108// different results every time. An encrypt/decrypt round-trip test is
109// performed in private-key.t.cpp
110
111BOOST_AUTO_TEST_CASE(UnsupportedEcEncryption)
112{
113 EcKeyTestData dataSet;
114
115 PublicKey pKey;
Davide Pesavento765abc92021-12-27 00:44:04 -0500116 pKey.loadPkcs8Base64({reinterpret_cast<const uint8_t*>(dataSet.publicKeyPkcs8.data()),
117 dataSet.publicKeyPkcs8.size()});
Davide Pesavento06f1bdf2017-09-16 18:59:15 -0400118 BOOST_CHECK_EQUAL(pKey.getKeyType(), KeyType::EC);
Davide Pesavento1c31a712017-09-15 00:52:03 -0400119
120 OBufferStream os;
121 bufferSource("Y2lhbyFob2xhIWhlbGxvIQ==") >> base64Decode() >> streamSink(os);
122
Davide Pesavento765abc92021-12-27 00:44:04 -0500123 BOOST_CHECK_THROW(pKey.encrypt(*os.buf()), PublicKey::Error);
Davide Pesavento1c31a712017-09-15 00:52:03 -0400124}
125
Yingdi Yu202a2e92015-07-12 16:49:25 -0700126BOOST_AUTO_TEST_SUITE_END() // TestPublicKey
127BOOST_AUTO_TEST_SUITE_END() // Transform
128BOOST_AUTO_TEST_SUITE_END() // Security
129
130} // namespace tests
131} // namespace transform
132} // namespace security
133} // namespace ndn