blob: 655811ca08ed4a1de7b0f50189bcc168d1ad17bc [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 Pesavento05ec0be2023-03-14 21:18:06 -04003 * Copyright (c) 2013-2023 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 Pesaventodd0724b2022-04-18 00:30:05 -040046 static constexpr KeyType type = KeyType::RSA;
47 static constexpr size_t size = 2048;
48 const std::string pkcs8Base64 =
Yingdi Yu202a2e92015-07-12 16:49:25 -070049 "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAw0WM1/WhAxyLtEqsiAJg\n"
50 "WDZWuzkYpeYVdeeZcqRZzzfRgBQTsNozS5t4HnwTZhwwXbH7k3QN0kRTV826Xobw\n"
51 "s3iigohnM9yTK+KKiayPhIAm/+5HGT6SgFJhYhqo1/upWdueojil6RP4/AgavHho\n"
52 "pxlAVbk6G9VdVnlQcQ5Zv0OcGi73c+EnYD/YgURYGSngUi/Ynsh779p2U69/te9g\n"
53 "ZwIL5PuE9BiO6I39cL9z7EK1SfZhOWvDe/qH7YhD/BHwcWit8FjRww1glwRVTJsA\n"
54 "9rH58ynaAix0tcR/nBMRLUX+e3rURHg6UbSjJbdb9qmKM1fTGHKUzL/5pMG6uBU0\n"
55 "ywIDAQAB\n";
Yingdi Yu202a2e92015-07-12 16:49:25 -070056};
57
Davide Pesavento1c31a712017-09-15 00:52:03 -040058struct EcKeyTestData
Yingdi Yu202a2e92015-07-12 16:49:25 -070059{
Davide Pesaventodd0724b2022-04-18 00:30:05 -040060 static constexpr KeyType type = KeyType::EC;
61 static constexpr size_t size = 256;
62 const std::string pkcs8Base64 =
Yingdi Yu202a2e92015-07-12 16:49:25 -070063 "MIIBSzCCAQMGByqGSM49AgEwgfcCAQEwLAYHKoZIzj0BAQIhAP////8AAAABAAAA\n"
64 "AAAAAAAAAAAA////////////////MFsEIP////8AAAABAAAAAAAAAAAAAAAA////\n"
65 "///////////8BCBaxjXYqjqT57PrvVV2mIa8ZR0GsMxTsPY7zjw+J9JgSwMVAMSd\n"
66 "NgiG5wSTamZ44ROdJreBn36QBEEEaxfR8uEsQkf4vOblY6RA8ncDfYEt6zOg9KE5\n"
67 "RdiYwpZP40Li/hp/m47n60p8D54WK84zV2sxXs7LtkBoN79R9QIhAP////8AAAAA\n"
68 "//////////+85vqtpxeehPO5ysL8YyVRAgEBA0IABGhuFibgwLdEJBDOLdvSg1Hc\n"
69 "5EJTDxq6ls5FoYLfThp8HOjuwGSz0qw8ocMqyku1y0V5peQ4rEPd0bwcpZd9svA=\n";
Yingdi Yu202a2e92015-07-12 16:49:25 -070070};
71
Davide Pesavento1c31a712017-09-15 00:52:03 -040072using KeyTestDataSets = boost::mpl::vector<RsaKeyTestData, EcKeyTestData>;
Yingdi Yu202a2e92015-07-12 16:49:25 -070073
Davide Pesaventodd0724b2022-04-18 00:30:05 -040074BOOST_AUTO_TEST_CASE_TEMPLATE(LoadAndSave, T, KeyTestDataSets)
Yingdi Yu202a2e92015-07-12 16:49:25 -070075{
76 T dataSet;
77
Davide Pesaventodd0724b2022-04-18 00:30:05 -040078 auto pKeyPkcs8Base64 = make_span(reinterpret_cast<const uint8_t*>(dataSet.pkcs8Base64.data()),
79 dataSet.pkcs8Base64.size());
Yingdi Yu202a2e92015-07-12 16:49:25 -070080 OBufferStream os;
Davide Pesavento35c63792022-01-17 02:06:03 -050081 bufferSource(pKeyPkcs8Base64) >> base64Decode() >> streamSink(os);
Davide Pesavento765abc92021-12-27 00:44:04 -050082 auto pKeyPkcs8 = os.buf();
Yingdi Yu202a2e92015-07-12 16:49:25 -070083
Davide Pesaventodd0724b2022-04-18 00:30:05 -040084 // Load
Yingdi Yu202a2e92015-07-12 16:49:25 -070085 PublicKey pKey1;
Davide Pesavento35c63792022-01-17 02:06:03 -050086 BOOST_CHECK_NO_THROW(pKey1.loadPkcs8Base64(pKeyPkcs8Base64));
Davide Pesaventodd0724b2022-04-18 00:30:05 -040087 BOOST_TEST(pKey1.getKeyType() == T::type);
88 BOOST_TEST(pKey1.getKeySize() == T::size);
Yingdi Yu202a2e92015-07-12 16:49:25 -070089
Davide Pesaventodd0724b2022-04-18 00:30:05 -040090 std::stringstream ss2(dataSet.pkcs8Base64);
Yingdi Yu202a2e92015-07-12 16:49:25 -070091 PublicKey pKey2;
Davide Pesavento1c31a712017-09-15 00:52:03 -040092 BOOST_CHECK_NO_THROW(pKey2.loadPkcs8Base64(ss2));
Yingdi Yu202a2e92015-07-12 16:49:25 -070093
94 PublicKey pKey3;
Davide Pesavento765abc92021-12-27 00:44:04 -050095 BOOST_CHECK_NO_THROW(pKey3.loadPkcs8(*pKeyPkcs8));
Yingdi Yu202a2e92015-07-12 16:49:25 -070096
97 std::stringstream ss4;
Davide Pesavento765abc92021-12-27 00:44:04 -050098 ss4.write(reinterpret_cast<const char*>(pKeyPkcs8->data()), pKeyPkcs8->size());
Yingdi Yu202a2e92015-07-12 16:49:25 -070099 PublicKey pKey4;
Davide Pesavento1c31a712017-09-15 00:52:03 -0400100 BOOST_CHECK_NO_THROW(pKey4.loadPkcs8(ss4));
Yingdi Yu202a2e92015-07-12 16:49:25 -0700101
Davide Pesaventodd0724b2022-04-18 00:30:05 -0400102 // Save
Yingdi Yu202a2e92015-07-12 16:49:25 -0700103 OBufferStream os5;
104 BOOST_REQUIRE_NO_THROW(pKey1.savePkcs8Base64(os5));
Davide Pesaventodd0724b2022-04-18 00:30:05 -0400105 BOOST_TEST(*os5.buf() == pKeyPkcs8Base64, boost::test_tools::per_element());
Yingdi Yu202a2e92015-07-12 16:49:25 -0700106
107 OBufferStream os6;
108 BOOST_REQUIRE_NO_THROW(pKey1.savePkcs8(os6));
Davide Pesaventodd0724b2022-04-18 00:30:05 -0400109 BOOST_TEST(*os6.buf() == *pKeyPkcs8, boost::test_tools::per_element());
Yingdi Yu202a2e92015-07-12 16:49:25 -0700110}
111
Davide Pesavento07db0732022-05-06 15:20:26 -0400112BOOST_AUTO_TEST_CASE(LoadError)
113{
114 EcKeyTestData dataSet;
115 auto pkcs8Base64 = make_span(reinterpret_cast<const uint8_t*>(dataSet.pkcs8Base64.data()),
116 dataSet.pkcs8Base64.size());
117 OBufferStream os;
118 bufferSource(pkcs8Base64) >> base64Decode() >> streamSink(os);
119 auto pkcs8 = os.buf();
120
121 PublicKey pKey;
122 // empty
123 BOOST_CHECK_THROW(pKey.loadPkcs8(span<uint8_t>{}), PublicKey::Error);
124 BOOST_CHECK_THROW(pKey.loadPkcs8Base64(span<uint8_t>{}), PublicKey::Error);
125 // truncated
126 BOOST_CHECK_THROW(pKey.loadPkcs8(make_span(*pkcs8).first(10)), PublicKey::Error);
127 BOOST_CHECK_THROW(pKey.loadPkcs8Base64(pkcs8Base64.first(10)), PublicKey::Error);
128}
129
Davide Pesavento1c31a712017-09-15 00:52:03 -0400130// NOTE: We cannot test RSA encryption by comparing the computed ciphertext to
131// a known-good one, because OAEP padding is randomized and would produce
132// different results every time. An encrypt/decrypt round-trip test is
133// performed in private-key.t.cpp
134
Davide Pesavento07db0732022-05-06 15:20:26 -0400135BOOST_AUTO_TEST_CASE(UnsupportedEncryption)
Davide Pesavento1c31a712017-09-15 00:52:03 -0400136{
Davide Pesavento1c31a712017-09-15 00:52:03 -0400137 OBufferStream os;
138 bufferSource("Y2lhbyFob2xhIWhlbGxvIQ==") >> base64Decode() >> streamSink(os);
Davide Pesavento07db0732022-05-06 15:20:26 -0400139 auto plain = os.buf();
Davide Pesavento1c31a712017-09-15 00:52:03 -0400140
Davide Pesavento07db0732022-05-06 15:20:26 -0400141 PublicKey pKey;
142 BOOST_CHECK_THROW(pKey.encrypt(*plain), PublicKey::Error);
143
144 EcKeyTestData dataSet;
145 pKey.loadPkcs8Base64({reinterpret_cast<const uint8_t*>(dataSet.pkcs8Base64.data()),
146 dataSet.pkcs8Base64.size()});
147 BOOST_CHECK_THROW(pKey.encrypt(*plain), PublicKey::Error);
Davide Pesavento1c31a712017-09-15 00:52:03 -0400148}
149
Yingdi Yu202a2e92015-07-12 16:49:25 -0700150BOOST_AUTO_TEST_SUITE_END() // TestPublicKey
151BOOST_AUTO_TEST_SUITE_END() // Transform
152BOOST_AUTO_TEST_SUITE_END() // Security
153
154} // namespace tests
155} // namespace transform
156} // namespace security
157} // namespace ndn