blob: b9d8d3608a7336660390b5483ee6c063e5d135bd [file] [log] [blame]
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -08001/**
2 * Copyright (C) 2013 Regents of the University of California.
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -08003 * See COPYING for copyright and distribution information.
4 */
5
Alexander Afanasyev09c613f2014-01-29 00:23:58 -08006#include "security/certificate.hpp"
7#include "security/public-key.hpp"
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -08008
Junxiao Shi482ccc52014-03-31 13:05:24 -07009#include "security/cryptopp.hpp"
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -080010
Alexander Afanasyevb1db7c62014-04-03 14:57:25 -070011#include "boost-test.hpp"
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -080012
13using namespace std;
Alexander Afanasyev0abb2da2014-01-30 18:07:57 -080014namespace ndn {
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -080015
16using namespace CryptoPP;
17
18BOOST_AUTO_TEST_SUITE(TestCertificate)
19
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -080020const uint8_t PUBLIC_KEY[] = {
210x30, 0x81, 0x9d, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x81,
220x8b, 0x00, 0x30, 0x81, 0x87, 0x02, 0x81, 0x81, 0x00, 0x9e, 0x06, 0x3e, 0x47, 0x85, 0xb2, 0x34, 0x37, 0xaa, 0x85, 0x47,
230xac, 0x03, 0x24, 0x83, 0xb5, 0x9c, 0xa8, 0x05, 0x3a, 0x24, 0x1e, 0xeb, 0x89, 0x01, 0xbb, 0xe9, 0x9b, 0xb2, 0xc3, 0x22,
240xac, 0x68, 0xe3, 0xf0, 0x6c, 0x02, 0xce, 0x68, 0xa6, 0xc4, 0xd0, 0xa7, 0x06, 0x90, 0x9c, 0xaa, 0x1b, 0x08, 0x1d, 0x8b,
250x43, 0x9a, 0x33, 0x67, 0x44, 0x6d, 0x21, 0xa3, 0x1b, 0x88, 0x9a, 0x97, 0x5e, 0x59, 0xc4, 0x15, 0x0b, 0xd9, 0x2c, 0xbd,
260x51, 0x07, 0x61, 0x82, 0xad, 0xc1, 0xb8, 0xd7, 0xbf, 0x9b, 0xcf, 0x7d, 0x24, 0xc2, 0x63, 0xf3, 0x97, 0x17, 0xeb, 0xfe,
270x62, 0x25, 0xba, 0x5b, 0x4d, 0x8a, 0xc2, 0x7a, 0xbd, 0x43, 0x8a, 0x8f, 0xb8, 0xf2, 0xf1, 0xc5, 0x6a, 0x30, 0xd3, 0x50,
280x8c, 0xc8, 0x9a, 0xdf, 0xef, 0xed, 0x35, 0xe7, 0x7a, 0x62, 0xea, 0x76, 0x7c, 0xbb, 0x08, 0x26, 0xc7, 0x02, 0x01, 0x11
29};
30
Alexander Afanasyev049f8f72013-12-26 19:07:15 -080031const uint8_t CERT[] = {
320x30, 0x81, 0xff, 0x30, 0x22, 0x18, 0x0f, 0x32, 0x30, 0x31, 0x33, 0x31, 0x32, 0x32, 0x36, 0x32, 0x33, 0x32, 0x32, 0x35, 0x34, 0x5a, 0x18, 0x0f, 0x32, 0x30, 0x31, 0x33, 0x31, 0x32, 0x32, 0x36, 0x32, 0x33, 0x32, 0x32, 0x35, 0x34, 0x5a, 0x30, 0x12, 0x30, 0x10, 0x06, 0x03, 0x55, 0x04, 0x29, 0x13, 0x09, 0x54, 0x45, 0x53, 0x54, 0x20, 0x4e, 0x41, 0x4d, 0x45, 0x30, 0x81, 0x9d, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x81, 0x8b, 0x00, 0x30, 0x81, 0x87, 0x02, 0x81, 0x81, 0x00, 0x9e, 0x06, 0x3e, 0x47, 0x85, 0xb2, 0x34, 0x37, 0xaa, 0x85, 0x47, 0xac, 0x03, 0x24, 0x83, 0xb5, 0x9c, 0xa8, 0x05, 0x3a, 0x24, 0x1e, 0xeb, 0x89, 0x01, 0xbb, 0xe9, 0x9b, 0xb2, 0xc3, 0x22, 0xac, 0x68, 0xe3, 0xf0, 0x6c, 0x02, 0xce, 0x68, 0xa6, 0xc4, 0xd0, 0xa7, 0x06, 0x90, 0x9c, 0xaa, 0x1b, 0x08, 0x1d, 0x8b, 0x43, 0x9a, 0x33, 0x67, 0x44, 0x6d, 0x21, 0xa3, 0x1b, 0x88, 0x9a, 0x97, 0x5e, 0x59, 0xc4, 0x15, 0x0b, 0xd9, 0x2c, 0xbd, 0x51, 0x07, 0x61, 0x82, 0xad, 0xc1, 0xb8, 0xd7, 0xbf, 0x9b, 0xcf, 0x7d, 0x24, 0xc2, 0x63, 0xf3, 0x97, 0x17, 0xeb, 0xfe, 0x62, 0x25, 0xba, 0x5b, 0x4d, 0x8a, 0xc2, 0x7a, 0xbd, 0x43, 0x8a, 0x8f, 0xb8, 0xf2, 0xf1, 0xc5, 0x6a, 0x30, 0xd3, 0x50, 0x8c, 0xc8, 0x9a, 0xdf, 0xef, 0xed, 0x35, 0xe7, 0x7a, 0x62, 0xea, 0x76, 0x7c, 0xbb, 0x08, 0x26, 0xc7, 0x02, 0x01, 0x11, 0x30, 0x25, 0x30, 0x23, 0x06, 0x06, 0x2b, 0x06, 0x01, 0x05, 0x20, 0x01, 0x01, 0x01, 0xff, 0x04, 0x16, 0x30, 0x14, 0x04, 0x0c, 0x2f, 0x68, 0x65, 0x6c, 0x6c, 0x6f, 0x2f, 0x6b, 0x69, 0x74, 0x74, 0x79, 0x02, 0x01, 0x00, 0x02, 0x01, 0x0a
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -080033};
34
Alexander Afanasyev049f8f72013-12-26 19:07:15 -080035const std::string CERT_INFO = "Certificate name:\n"
36 " /\n"
37 "Validity:\n"
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070038 " NotBefore: 20131226T232254\n"
39 " NotAfter: 20131226T232254\n"
Alexander Afanasyev049f8f72013-12-26 19:07:15 -080040 "Subject Description:\n"
41 " 2.5.4.41: TEST NAME\n"
42 "Public key bits:\n"
43 "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQCeBj5HhbI0N6qFR6wDJIO1nKgF\n"
44 "OiQe64kBu+mbssMirGjj8GwCzmimxNCnBpCcqhsIHYtDmjNnRG0hoxuImpdeWcQV\n"
45 "C9ksvVEHYYKtwbjXv5vPfSTCY/OXF+v+YiW6W02Kwnq9Q4qPuPLxxWow01CMyJrf\n"
46 "7+0153pi6nZ8uwgmxwIB\n";
47
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -080048BOOST_AUTO_TEST_CASE (Encode)
49{
50 ndn::Certificate c;
51
Alexander Afanasyev049f8f72013-12-26 19:07:15 -080052 // validity
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070053 c.setNotBefore(time::fromUnixTimestamp(time::milliseconds(1388100174000))); // 12/26/2013 @ 11:22pm
54 c.setNotAfter(time::fromUnixTimestamp(time::milliseconds(1388100174000))); // 12/26/2013 @ 11:22pm
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -080055
Alexander Afanasyev049f8f72013-12-26 19:07:15 -080056 // subject
57 c.addSubjectDescription(CertificateSubjectDescription("2.5.4.41", "TEST NAME"));
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -080058
Alexander Afanasyev049f8f72013-12-26 19:07:15 -080059 // publicKeyInfo
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -080060 ndn::PublicKey key(PUBLIC_KEY, sizeof(PUBLIC_KEY));
Alexander Afanasyev049f8f72013-12-26 19:07:15 -080061 c.setPublicKeyInfo(key);
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -080062
Alexander Afanasyev049f8f72013-12-26 19:07:15 -080063 // extensions
64 BOOST_REQUIRE_NO_THROW({
65 std::string extenstionValue;
66 StringSink sink(extenstionValue);
67 DERSequenceEncoder seq(sink);
68 {
69 std::string name("/hello/kitty");
70 DEREncodeOctetString(seq, reinterpret_cast<const uint8_t*>(name.c_str()), name.size());
71 // trustClass
72 DEREncodeUnsigned<uint32_t>(seq, 0);
73 // trustLevel
74 DEREncodeUnsigned<uint32_t>(seq, 10);
75 }
76 seq.MessageEnd();
Alexander Afanasyev85278002014-03-31 18:53:43 -070077
Alexander Afanasyev049f8f72013-12-26 19:07:15 -080078 c.addExtension(CertificateExtension("1.3.6.1.5.32.1", true,
79 reinterpret_cast<const uint8_t*>(extenstionValue.c_str()), extenstionValue.size()));
80 });
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -080081 // RSA::PublicKey p;
82 // StringSource source(T, sizeof(T), true);
83 // p.Load(source);
Alexander Afanasyev049f8f72013-12-26 19:07:15 -080084
85 BOOST_REQUIRE_NO_THROW(c.encode());
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070086
Alexander Afanasyev049f8f72013-12-26 19:07:15 -080087 // ofstream of("cert.out");
88 // of.write((const char*)c.getContent().value(), c.getContent().value_size());
Alexander Afanasyev85278002014-03-31 18:53:43 -070089
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -080090 // const Block &wire = i.wireEncode();
Alexander Afanasyev049f8f72013-12-26 19:07:15 -080091 BOOST_REQUIRE_EQUAL_COLLECTIONS(CERT, CERT+sizeof(CERT),
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070092 c.getContent().value_begin(), c.getContent().value_end());
Alexander Afanasyev049f8f72013-12-26 19:07:15 -080093
94 std::ostringstream os;
95 os << c << std::endl;
96 std::string info(os.str());
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -070097
98 BOOST_CHECK_EQUAL(CERT_INFO, info);
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -080099}
100
Alexander Afanasyev049f8f72013-12-26 19:07:15 -0800101const unsigned char REAL_CERT[] = {
1020x30, 0x82, 0x01, 0x63, 0x30, 0x22, 0x18, 0x0f, 0x32, 0x30, 0x31, 0x33, 0x31, 0x31, 0x30, 0x31, 0x31, 0x37, 0x31, 0x31, 0x32, 0x32, 0x5a, 0x18, 0x0f, 0x32, 0x30, 0x31, 0x34, 0x31, 0x31, 0x30, 0x31, 0x31, 0x37, 0x31, 0x31, 0x32, 0x32, 0x5a, 0x30, 0x19, 0x30, 0x17, 0x06, 0x03, 0x55, 0x04, 0x29, 0x13, 0x10, 0x4e, 0x44, 0x4e, 0x20, 0x54, 0x65, 0x73, 0x74, 0x62, 0x65, 0x64, 0x20, 0x52, 0x6f, 0x6f, 0x74, 0x30, 0x82, 0x01, 0x20, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0d, 0x00, 0x30, 0x82, 0x01, 0x08, 0x02, 0x82, 0x01, 0x01, 0x00, 0xd3, 0xac, 0x7e, 0x7a, 0x5c, 0x33, 0x58, 0x21, 0xda, 0xe0, 0x8d, 0xdb, 0xca, 0xb6, 0x02, 0x30, 0x02, 0x15, 0xc5, 0x0a, 0x51, 0x54, 0xbb, 0x8e, 0x5e, 0x9d, 0x21, 0xf8, 0x14, 0xbe, 0xe4, 0x63, 0x60, 0x31, 0x53, 0xe2, 0xef, 0xee, 0x34, 0xa3, 0x8c, 0xd2, 0x24, 0x6f, 0xa4, 0x89, 0x4f, 0x02, 0x20, 0x7d, 0x66, 0xb6, 0x3f, 0x11, 0x40, 0x0c, 0xc1, 0x5f, 0xd8, 0x45, 0x23, 0x95, 0x40, 0xc8, 0xe0, 0xbc, 0x9d, 0x2f, 0x03, 0xf1, 0x83, 0x9f, 0x07, 0x0b, 0x76, 0xc9, 0x10, 0xd9, 0x3e, 0x0b, 0x75, 0x13, 0x93, 0xe9, 0xc9, 0x85, 0x01, 0x88, 0x36, 0x2e, 0xab, 0xfc, 0xe6, 0x24, 0x32, 0xfc, 0xc6, 0x3c, 0x40, 0x97, 0x1a, 0xcc, 0xcd, 0x53, 0xaa, 0x0f, 0xfb, 0xa3, 0xfe, 0xf9, 0x24, 0x70, 0x13, 0x3f, 0x4f, 0x5b, 0x7d, 0x43, 0xaa, 0x75, 0x0a, 0x94, 0x72, 0xab, 0xe1, 0x8c, 0x45, 0xb5, 0x78, 0x10, 0x01, 0xef, 0x1f, 0xb3, 0x05, 0x6f, 0xa6, 0xc3, 0xac, 0x7f, 0x6d, 0xf0, 0x31, 0xc4, 0x83, 0xb3, 0x4f, 0x50, 0x26, 0x92, 0x40, 0x1a, 0xdd, 0xec, 0xfb, 0xcb, 0xef, 0x63, 0xfe, 0x41, 0xd8, 0x8d, 0x1f, 0xdc, 0xec, 0xfc, 0x48, 0x95, 0xcc, 0x09, 0x1e, 0x30, 0x6e, 0x22, 0x9e, 0x24, 0x97, 0x2e, 0xe6, 0x0c, 0xdf, 0x3d, 0x20, 0x32, 0xaa, 0x9c, 0xc9, 0x45, 0x14, 0xaf, 0xaa, 0xf5, 0x17, 0xd2, 0x01, 0x98, 0x33, 0xbe, 0x2a, 0x9f, 0x7b, 0x9d, 0x98, 0x7c, 0x54, 0x22, 0xfe, 0x72, 0x72, 0x04, 0xc3, 0x2c, 0xc0, 0x14, 0x0b, 0xa9, 0x40, 0x7e, 0x46, 0xa1, 0x75, 0x16, 0x1a, 0x27, 0x9e, 0xf2, 0x82, 0x96, 0xc0, 0x7d, 0xaf, 0x18, 0x75, 0xfb, 0xbb, 0xab, 0x16, 0x66, 0xc0, 0xa9, 0xd7, 0x93, 0x4c, 0x48, 0x6d, 0xce, 0x0b, 0x88, 0xd4, 0x21, 0x93, 0x84, 0x89, 0x55, 0x05, 0xd5, 0x02, 0x01, 0x11
103};
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -0800104
Alexander Afanasyev049f8f72013-12-26 19:07:15 -0800105const std::string REAL_CERT_INFO = "Certificate name:\n"
106" /tmp\n"
107"Validity:\n"
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -0700108" NotBefore: 20131101T171122\n"
109" NotAfter: 20141101T171122\n"
Alexander Afanasyev049f8f72013-12-26 19:07:15 -0800110"Subject Description:\n"
111" 2.5.4.41: NDN Testbed Root\n"
112"Public key bits:\n"
113"MIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEA06x+elwzWCHa4I3byrYC\n"
114"MAIVxQpRVLuOXp0h+BS+5GNgMVPi7+40o4zSJG+kiU8CIH1mtj8RQAzBX9hFI5VA\n"
115"yOC8nS8D8YOfBwt2yRDZPgt1E5PpyYUBiDYuq/zmJDL8xjxAlxrMzVOqD/uj/vkk\n"
116"cBM/T1t9Q6p1CpRyq+GMRbV4EAHvH7MFb6bDrH9t8DHEg7NPUCaSQBrd7PvL72P+\n"
117"QdiNH9zs/EiVzAkeMG4iniSXLuYM3z0gMqqcyUUUr6r1F9IBmDO+Kp97nZh8VCL+\n"
118"cnIEwyzAFAupQH5GoXUWGiee8oKWwH2vGHX7u6sWZsCp15NMSG3OC4jUIZOEiVUF\n"
119"1QIB\n";
120
121BOOST_AUTO_TEST_CASE (Decode)
122{
123 ndn::Data d("/tmp");
124 d.setContent(REAL_CERT, sizeof(REAL_CERT));
125
126 ndn::Certificate c(d);
127
128 std::ostringstream os;
129 os << c << std::endl;
130 std::string info(os.str());
Alexander Afanasyevaa0e7da2014-03-17 14:37:33 -0700131 BOOST_CHECK_EQUAL(REAL_CERT_INFO, info);
Alexander Afanasyev049f8f72013-12-26 19:07:15 -0800132}
Alexander Afanasyev0ea6e082013-12-26 15:16:37 -0800133
134BOOST_AUTO_TEST_SUITE_END()
Alexander Afanasyev0abb2da2014-01-30 18:07:57 -0800135
136} // namespace ndn