Yingdi Yu | ebfa4cb | 2014-06-17 15:28:53 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (c) 2013-2014 Regents of the University of California. |
| 4 | * |
| 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 | |
| 22 | #include "security/signature-sha256-with-ecdsa.hpp" |
| 23 | |
| 24 | #include "boost-test.hpp" |
| 25 | |
| 26 | namespace ndn { |
| 27 | |
| 28 | BOOST_AUTO_TEST_SUITE(SecurityTestSignatureSha256WithEcdsa) |
| 29 | |
| 30 | const uint8_t sigInfo[] = { |
| 31 | 0x16, 0x1b, // SignatureInfo |
| 32 | 0x1b, 0x01, // SignatureType |
| 33 | 0x03, |
| 34 | 0x1c, 0x16, // KeyLocator |
| 35 | 0x07, 0x14, // Name |
| 36 | 0x08, 0x04, |
| 37 | 0x74, 0x65, 0x73, 0x74, |
| 38 | 0x08, 0x03, |
| 39 | 0x6b, 0x65, 0x79, |
| 40 | 0x08, 0x07, |
| 41 | 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x6f, 0x72 |
| 42 | }; |
| 43 | |
| 44 | const uint8_t sigValue[] = { |
| 45 | 0x17, 0x40, // SignatureValue |
| 46 | 0x2f, 0xd6, 0xf1, 0x6e, 0x80, 0x6f, 0x10, 0xbe, 0xb1, 0x6f, 0x3e, 0x31, 0xec, |
| 47 | 0xe3, 0xb9, 0xea, 0x83, 0x30, 0x40, 0x03, 0xfc, 0xa0, 0x13, 0xd9, 0xb3, 0xc6, |
| 48 | 0x25, 0x16, 0x2d, 0xa6, 0x58, 0x41, 0x69, 0x62, 0x56, 0xd8, 0xb3, 0x6a, 0x38, |
| 49 | 0x76, 0x56, 0xea, 0x61, 0xb2, 0x32, 0x70, 0x1c, 0xb6, 0x4d, 0x10, 0x1d, 0xdc, |
| 50 | 0x92, 0x8e, 0x52, 0xa5, 0x8a, 0x1d, 0xd9, 0x96, 0x5e, 0xc0, 0x62, 0x0b |
| 51 | }; |
| 52 | |
| 53 | |
| 54 | BOOST_AUTO_TEST_CASE(Decoding) |
| 55 | { |
| 56 | Block sigInfoBlock(sigInfo, sizeof(sigInfo)); |
| 57 | Block sigValueBlock(sigValue, sizeof(sigValue)); |
| 58 | |
| 59 | Signature sig(sigInfoBlock, sigValueBlock); |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 60 | BOOST_CHECK_NO_THROW(SignatureSha256WithEcdsa(sig)); |
| 61 | BOOST_CHECK_NO_THROW(sig.getKeyLocator()); |
Yingdi Yu | ebfa4cb | 2014-06-17 15:28:53 -0700 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | BOOST_AUTO_TEST_CASE(Encoding) |
| 65 | { |
Yingdi Yu | ebfa4cb | 2014-06-17 15:28:53 -0700 | [diff] [blame] | 66 | Name name("/test/key/locator"); |
| 67 | KeyLocator keyLocator(name); |
| 68 | |
Yingdi Yu | 4a55705 | 2014-07-09 16:40:37 -0700 | [diff] [blame] | 69 | SignatureSha256WithEcdsa sig(keyLocator); |
| 70 | |
| 71 | BOOST_CHECK_NO_THROW(sig.getKeyLocator()); |
Yingdi Yu | ebfa4cb | 2014-06-17 15:28:53 -0700 | [diff] [blame] | 72 | |
| 73 | const Block& encodeSigInfoBlock = sig.getInfo(); |
| 74 | |
| 75 | Block sigInfoBlock(sigInfo, sizeof(sigInfo)); |
| 76 | |
| 77 | BOOST_CHECK_EQUAL_COLLECTIONS(sigInfoBlock.wire(), |
| 78 | sigInfoBlock.wire() + sigInfoBlock.size(), |
| 79 | encodeSigInfoBlock.wire(), |
| 80 | encodeSigInfoBlock.wire() + encodeSigInfoBlock.size()); |
Alexander Afanasyev | 1c6976d | 2014-07-13 11:40:50 -0700 | [diff] [blame] | 81 | |
| 82 | sig.setKeyLocator(Name("/test/another/key/locator")); |
| 83 | |
| 84 | const Block& encodeSigInfoBlock2 = sig.getInfo(); |
| 85 | BOOST_CHECK(sigInfoBlock != encodeSigInfoBlock2); |
Yingdi Yu | ebfa4cb | 2014-06-17 15:28:53 -0700 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | BOOST_AUTO_TEST_SUITE_END() |
| 89 | |
| 90 | } // namespace ndn |