Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 2 | /** |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2014 Regents of the University of California. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 6 | * |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 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. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 20 | * |
| 21 | * @author Yingdi Yu <http://irl.cs.ucla.edu/~yingdi/> |
| 22 | * @author Jeff Thompson <jefft0@remap.ucla.edu> |
| 23 | * @author Alexander Afanasyev <http://lasr.cs.ucla.edu/afanasyev/index.html> |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 24 | */ |
| 25 | |
Alexander Afanasyev | 09c613f | 2014-01-29 00:23:58 -0800 | [diff] [blame] | 26 | #include "common.hpp" |
Alexander Afanasyev | 8e96e58 | 2013-11-19 12:07:04 -0800 | [diff] [blame] | 27 | |
Alexander Afanasyev | e2dcdfd | 2014-02-07 15:53:28 -0800 | [diff] [blame] | 28 | #include "certificate.hpp" |
Yingdi Yu | 4f32463 | 2014-01-15 18:10:03 -0800 | [diff] [blame] | 29 | #include "../util/time.hpp" |
Junxiao Shi | 482ccc5 | 2014-03-31 13:05:24 -0700 | [diff] [blame] | 30 | #include "cryptopp.hpp" |
Yingdi Yu | 4f32463 | 2014-01-15 18:10:03 -0800 | [diff] [blame] | 31 | #include "../encoding/cryptopp/asn_ext.hpp" |
Alexander Afanasyev | 258ec2b | 2014-05-14 16:15:37 -0700 | [diff] [blame] | 32 | #include "../encoding/buffer-stream.hpp" |
Yingdi Yu | 80979ba | 2014-11-25 14:38:36 -0800 | [diff] [blame] | 33 | #include "../util/concepts.hpp" |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 34 | |
Yingdi Yu | 3e8b52e | 2014-11-26 22:05:00 -0800 | [diff] [blame^] | 35 | #include <boost/algorithm/string/split.hpp> |
| 36 | |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 37 | namespace ndn { |
| 38 | |
Yingdi Yu | 80979ba | 2014-11-25 14:38:36 -0800 | [diff] [blame] | 39 | BOOST_CONCEPT_ASSERT((WireEncodable<Certificate>)); |
| 40 | BOOST_CONCEPT_ASSERT((WireDecodable<Certificate>)); |
| 41 | static_assert(std::is_base_of<tlv::Error, Certificate::Error>::value, |
| 42 | "Certificate::Error must inherit from tlv::Error"); |
| 43 | |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 44 | Certificate::Certificate() |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 45 | : m_notBefore(time::system_clock::TimePoint::max()) |
| 46 | , m_notAfter(time::system_clock::TimePoint::min()) |
| 47 | { |
| 48 | } |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 49 | |
| 50 | Certificate::Certificate(const Data& data) |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 51 | // Use the copy constructor. It clones the signature object. |
| 52 | : Data(data) |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 53 | { |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 54 | decode(); |
| 55 | } |
| 56 | |
Yingdi Yu | 80979ba | 2014-11-25 14:38:36 -0800 | [diff] [blame] | 57 | Certificate::Certificate(const Block& block) |
| 58 | : Data(block) |
| 59 | { |
| 60 | decode(); |
| 61 | } |
| 62 | |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 63 | Certificate::~Certificate() |
| 64 | { |
Yingdi Yu | 80979ba | 2014-11-25 14:38:36 -0800 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | void |
| 68 | Certificate::wireDecode(const Block& wire) |
| 69 | { |
| 70 | Data::wireDecode(wire); |
| 71 | decode(); |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | bool |
| 75 | Certificate::isTooEarly() |
| 76 | { |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 77 | if (time::system_clock::now() < m_notBefore) |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 78 | return true; |
| 79 | else |
| 80 | return false; |
| 81 | } |
| 82 | |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 83 | bool |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 84 | Certificate::isTooLate() |
| 85 | { |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 86 | if (time::system_clock::now() > m_notAfter) |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 87 | return true; |
| 88 | else |
| 89 | return false; |
| 90 | } |
| 91 | |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 92 | void |
| 93 | Certificate::encode() |
| 94 | { |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 95 | // Name |
| 96 | // <key_name>/ID-CERT/<id#> |
| 97 | // Content |
| 98 | // DER encoded idCert: |
| 99 | // |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 100 | // idCert ::= SEQUENCE { |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 101 | // validity Validity, |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 102 | // subject Name, |
| 103 | // subjectPubKeyInfo SubjectPublicKeyInfo, |
| 104 | // extension Extensions OPTIONAL } |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 105 | // |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 106 | // Validity ::= SEQUENCE { |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 107 | // notBefore Time, |
| 108 | // notAfter Time } |
| 109 | // |
| 110 | // Name ::= CHOICE { |
| 111 | // RDNSequence } |
| 112 | // |
| 113 | // RDNSequence ::= SEQUENCE OF RelativeDistinguishedName |
| 114 | // |
| 115 | // RelativeDistinguishedName ::= |
| 116 | // SET OF AttributeTypeAndValue |
| 117 | // |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 118 | // SubjectPublicKeyInfo ::= SEQUENCE { |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 119 | // algorithm AlgorithmIdentifier |
| 120 | // keybits BIT STRING } |
| 121 | // |
| 122 | // Extensions ::= SEQUENCE SIZE (1..MAX) OF Extension |
| 123 | // |
| 124 | // (see http://www.ietf.org/rfc/rfc3280.txt for more detail) |
| 125 | // |
| 126 | // KeyLocator |
| 127 | // issuer’s certificate name |
| 128 | // Signature |
| 129 | |
| 130 | using namespace CryptoPP; |
| 131 | |
| 132 | OBufferStream os; |
| 133 | CryptoPP::FileSink sink(os); |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 134 | |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 135 | // idCert ::= SEQUENCE { |
| 136 | // validity Validity, |
| 137 | // subject Name, |
| 138 | // subjectPubKeyInfo SubjectPublicKeyInfo, |
| 139 | // extension Extensions OPTIONAL } |
| 140 | DERSequenceEncoder idCert(sink); |
| 141 | { |
| 142 | // Validity ::= SEQUENCE { |
| 143 | // notBefore Time, |
| 144 | // notAfter Time } |
| 145 | DERSequenceEncoder validity(idCert); |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 146 | { |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 147 | DEREncodeGeneralTime(validity, m_notBefore); |
| 148 | DEREncodeGeneralTime(validity, m_notAfter); |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 149 | } |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 150 | validity.MessageEnd(); |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 151 | |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 152 | // Name ::= CHOICE { |
| 153 | // RDNSequence } |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 154 | // |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 155 | // RDNSequence ::= SEQUENCE OF RelativeDistinguishedName |
| 156 | DERSequenceEncoder name(idCert); |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 157 | { |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 158 | for (SubjectDescriptionList::iterator it = m_subjectDescriptionList.begin(); |
| 159 | it != m_subjectDescriptionList.end(); ++it) |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 160 | { |
| 161 | it->encode(name); |
| 162 | } |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 163 | } |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 164 | name.MessageEnd(); |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 165 | |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 166 | // SubjectPublicKeyInfo |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 167 | m_key.encode(idCert); |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 168 | |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 169 | // Extensions ::= SEQUENCE SIZE (1..MAX) OF Extension |
| 170 | // |
| 171 | // Extension ::= SEQUENCE { |
| 172 | // extnID OBJECT IDENTIFIER, |
| 173 | // critical BOOLEAN DEFAULT FALSE, |
| 174 | // extnValue OCTET STRING } |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 175 | if (!m_extensionList.empty()) |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 176 | { |
| 177 | DERSequenceEncoder extensions(idCert); |
| 178 | { |
Yingdi Yu | 4b8c6a2 | 2014-04-15 23:00:54 -0700 | [diff] [blame] | 179 | for (ExtensionList::iterator it = m_extensionList.begin(); |
| 180 | it != m_extensionList.end(); ++it) |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 181 | { |
| 182 | it->encode(extensions); |
| 183 | } |
| 184 | } |
| 185 | extensions.MessageEnd(); |
| 186 | } |
| 187 | } |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 188 | |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 189 | idCert.MessageEnd(); |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 190 | |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 191 | setContent(os.buf()); |
Junxiao Shi | a464b92 | 2014-11-12 21:13:06 -0700 | [diff] [blame] | 192 | setContentType(tlv::ContentType_Key); |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 193 | } |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 194 | |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 195 | void |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 196 | Certificate::decode() |
| 197 | { |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 198 | using namespace CryptoPP; |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 199 | |
Yingdi Yu | 80979ba | 2014-11-25 14:38:36 -0800 | [diff] [blame] | 200 | try { |
| 201 | OBufferStream os; |
| 202 | StringSource source(getContent().value(), getContent().value_size(), true); |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 203 | |
Yingdi Yu | 80979ba | 2014-11-25 14:38:36 -0800 | [diff] [blame] | 204 | // idCert ::= SEQUENCE { |
| 205 | // validity Validity, |
| 206 | // subject Name, |
| 207 | // subjectPubKeyInfo SubjectPublicKeyInfo, |
| 208 | // extension Extensions OPTIONAL } |
| 209 | BERSequenceDecoder idCert(source); |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 210 | { |
Yingdi Yu | 80979ba | 2014-11-25 14:38:36 -0800 | [diff] [blame] | 211 | // Validity ::= SEQUENCE { |
| 212 | // notBefore Time, |
| 213 | // notAfter Time } |
| 214 | BERSequenceDecoder validity(idCert); |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 215 | { |
Yingdi Yu | 80979ba | 2014-11-25 14:38:36 -0800 | [diff] [blame] | 216 | BERDecodeTime(validity, m_notBefore); |
| 217 | BERDecodeTime(validity, m_notAfter); |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 218 | } |
Yingdi Yu | 80979ba | 2014-11-25 14:38:36 -0800 | [diff] [blame] | 219 | validity.MessageEnd(); |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 220 | |
Yingdi Yu | 80979ba | 2014-11-25 14:38:36 -0800 | [diff] [blame] | 221 | // Name ::= CHOICE { |
| 222 | // RDNSequence } |
| 223 | // |
| 224 | // RDNSequence ::= SEQUENCE OF RelativeDistinguishedName |
| 225 | m_subjectDescriptionList.clear(); |
| 226 | BERSequenceDecoder name(idCert); |
| 227 | { |
| 228 | while (!name.EndReached()) |
| 229 | { |
| 230 | m_subjectDescriptionList.push_back(CertificateSubjectDescription(name)); |
| 231 | } |
| 232 | } |
| 233 | name.MessageEnd(); |
| 234 | |
| 235 | // SubjectPublicKeyInfo ::= SEQUENCE { |
| 236 | // algorithm AlgorithmIdentifier |
| 237 | // keybits BIT STRING } |
| 238 | m_key.decode(idCert); |
| 239 | |
| 240 | // Extensions ::= SEQUENCE SIZE (1..MAX) OF Extension |
| 241 | // |
| 242 | // Extension ::= SEQUENCE { |
| 243 | // extnID OBJECT IDENTIFIER, |
| 244 | // critical BOOLEAN DEFAULT FALSE, |
| 245 | // extnValue OCTET STRING } |
| 246 | m_extensionList.clear(); |
| 247 | if (!idCert.EndReached()) |
| 248 | { |
| 249 | BERSequenceDecoder extensions(idCert); |
| 250 | { |
| 251 | while (!extensions.EndReached()) |
| 252 | { |
| 253 | m_extensionList.push_back(CertificateExtension(extensions)); |
| 254 | } |
| 255 | } |
| 256 | extensions.MessageEnd(); |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | idCert.MessageEnd(); |
| 261 | } |
| 262 | catch (CryptoPP::BERDecodeErr&) { |
| 263 | throw Error("Certificate Decoding Error"); |
| 264 | } |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 265 | } |
| 266 | |
Yingdi Yu | 3e8b52e | 2014-11-26 22:05:00 -0800 | [diff] [blame^] | 267 | /** |
| 268 | * @brief Output to stream with specified indent |
| 269 | * |
| 270 | * Based on http://stackoverflow.com/a/2212940/2150331 |
| 271 | */ |
| 272 | class IndentedStream : public std::ostream |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 273 | { |
Yingdi Yu | 3e8b52e | 2014-11-26 22:05:00 -0800 | [diff] [blame^] | 274 | public: |
| 275 | IndentedStream(std::ostream& os, const std::string& indent = "") |
| 276 | : std::ostream(&m_buffer) |
| 277 | , m_buffer(os, indent) |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 278 | { |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 279 | } |
| 280 | |
Yingdi Yu | 3e8b52e | 2014-11-26 22:05:00 -0800 | [diff] [blame^] | 281 | ~IndentedStream() |
| 282 | { |
| 283 | flush(); |
| 284 | } |
| 285 | |
| 286 | private: |
| 287 | // Write a stream buffer that prefixes each line with Plop |
| 288 | class StreamBuf : public std::stringbuf |
| 289 | { |
| 290 | public: |
| 291 | StreamBuf(std::ostream& os, const std::string& indent) |
| 292 | : m_output(os) |
| 293 | , m_indent(indent) |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 294 | { |
Alexander Afanasyev | 0ea6e08 | 2013-12-26 15:16:37 -0800 | [diff] [blame] | 295 | } |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 296 | |
Yingdi Yu | 3e8b52e | 2014-11-26 22:05:00 -0800 | [diff] [blame^] | 297 | virtual int |
| 298 | sync() |
| 299 | { |
| 300 | typedef boost::iterator_range<std::string::const_iterator> StringView; |
| 301 | |
| 302 | const std::string& output = str(); |
| 303 | std::vector<StringView> splitOutput; |
| 304 | boost::split(splitOutput, output, [] (const char& ch) { return ch == '\n'; }); |
| 305 | |
| 306 | if (!splitOutput.empty() && splitOutput.back().empty()) { |
| 307 | splitOutput.pop_back(); |
| 308 | } |
| 309 | for (const StringView& line : splitOutput) { |
| 310 | m_output << m_indent << line << "\n"; |
| 311 | } |
| 312 | return 0; // success |
| 313 | } |
| 314 | private: |
| 315 | std::ostream& m_output; |
| 316 | std::string m_indent; |
| 317 | }; |
| 318 | |
| 319 | StreamBuf m_buffer; |
| 320 | }; |
| 321 | |
| 322 | void |
| 323 | Certificate::printCertificate(std::ostream& oss, const std::string& indent) const |
| 324 | { |
| 325 | IndentedStream os(oss, indent); |
| 326 | |
| 327 | os << "Certificate name:\n"; |
| 328 | os << " " << getName() << "\n"; |
| 329 | os << "Validity:\n"; |
| 330 | { |
| 331 | os << " NotBefore: " << time::toIsoString(m_notBefore) << "\n"; |
| 332 | os << " NotAfter: " << time::toIsoString(m_notAfter) << "\n"; |
| 333 | } |
| 334 | |
| 335 | os << "Subject Description:\n"; |
| 336 | for (const auto& description : m_subjectDescriptionList) |
| 337 | os << " " << description.getOidString() << ": " << description.getValue() << "\n"; |
| 338 | |
Yingdi Yu | 3b4c314 | 2014-11-18 10:30:45 -0800 | [diff] [blame] | 339 | os << "Public key bits: "; |
| 340 | switch (m_key.getKeyType()) { |
| 341 | case KEY_TYPE_RSA: |
| 342 | os << "(RSA)"; |
| 343 | break; |
| 344 | case KEY_TYPE_ECDSA: |
| 345 | os << "(ECDSA)"; |
| 346 | break; |
| 347 | default: |
| 348 | os << "(Unknown key type)"; |
| 349 | break; |
| 350 | } |
Yingdi Yu | 3e8b52e | 2014-11-26 22:05:00 -0800 | [diff] [blame^] | 351 | os << "\n"; |
Yingdi Yu | 3b4c314 | 2014-11-18 10:30:45 -0800 | [diff] [blame] | 352 | |
Yingdi Yu | 3e8b52e | 2014-11-26 22:05:00 -0800 | [diff] [blame^] | 353 | { |
| 354 | IndentedStream os2(os, " "); |
| 355 | CryptoPP::Base64Encoder encoder(new CryptoPP::FileSink(os2), true, 64); |
| 356 | m_key.encode(encoder); |
| 357 | } |
| 358 | |
| 359 | os << "Signature Information:\n"; |
Yingdi Yu | 3b4c314 | 2014-11-18 10:30:45 -0800 | [diff] [blame] | 360 | { |
| 361 | os << " Signature Type: "; |
| 362 | switch (getSignature().getType()) { |
| 363 | case tlv::SignatureTypeValue::DigestSha256: |
| 364 | os << "DigestSha256"; |
| 365 | break; |
| 366 | case tlv::SignatureTypeValue::SignatureSha256WithRsa: |
| 367 | os << "SignatureSha256WithRsa"; |
| 368 | break; |
| 369 | case tlv::SignatureTypeValue::SignatureSha256WithEcdsa: |
| 370 | os << "SignatureSha256WithEcdsa"; |
| 371 | break; |
| 372 | default: |
| 373 | os << "Unknown Signature Type"; |
| 374 | } |
Yingdi Yu | 3e8b52e | 2014-11-26 22:05:00 -0800 | [diff] [blame^] | 375 | os << "\n"; |
Yingdi Yu | 3b4c314 | 2014-11-18 10:30:45 -0800 | [diff] [blame] | 376 | |
| 377 | if (getSignature().hasKeyLocator()) { |
| 378 | const KeyLocator& keyLocator = getSignature().getKeyLocator(); |
| 379 | os << " Key Locator: "; |
| 380 | switch (keyLocator.getType()) { |
| 381 | case KeyLocator::KeyLocator_Name: |
| 382 | { |
| 383 | const Name& signerName = keyLocator.getName(); |
| 384 | if (signerName.isPrefixOf(getName())) |
| 385 | os << "(Self-Signed) " << keyLocator.getName(); |
| 386 | else |
| 387 | os << "(Name) " << keyLocator.getName(); |
| 388 | break; |
| 389 | } |
| 390 | case KeyLocator::KeyLocator_KeyDigest: |
| 391 | os << "(KeyDigest)"; |
| 392 | break; |
| 393 | case KeyLocator::KeyLocator_None: |
| 394 | os << "None"; |
| 395 | break; |
| 396 | default: |
| 397 | os << "Unknown"; |
| 398 | } |
Yingdi Yu | 3e8b52e | 2014-11-26 22:05:00 -0800 | [diff] [blame^] | 399 | os << "\n"; |
Yingdi Yu | 3b4c314 | 2014-11-18 10:30:45 -0800 | [diff] [blame] | 400 | } |
| 401 | } |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 402 | } |
Jeff Thompson | a5dc351 | 2013-10-17 10:26:19 -0700 | [diff] [blame] | 403 | |
Yingdi Yu | 80979ba | 2014-11-25 14:38:36 -0800 | [diff] [blame] | 404 | std::ostream& |
| 405 | operator<<(std::ostream& os, const Certificate& cert) |
| 406 | { |
| 407 | cert.printCertificate(os); |
| 408 | return os; |
| 409 | } |
| 410 | |
| 411 | |
Yingdi Yu | fc40d87 | 2014-02-18 12:56:04 -0800 | [diff] [blame] | 412 | } // namespace ndn |