Alexander Afanasyev | fa13f8e | 2014-01-03 15:19:07 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /** |
| 3 | * Copyright (C) 2013 Regents of the University of California. |
Alexander Afanasyev | fa13f8e | 2014-01-03 15:19:07 -0800 | [diff] [blame] | 4 | * See COPYING for copyright and distribution information. |
| 5 | */ |
| 6 | |
Yingdi Yu | fc40d87 | 2014-02-18 12:56:04 -0800 | [diff] [blame] | 7 | #ifndef NDN_SECURITY_SIGNATURE_SHA256_WITH_RSA_HPP |
| 8 | #define NDN_SECURITY_SIGNATURE_SHA256_WITH_RSA_HPP |
Alexander Afanasyev | fa13f8e | 2014-01-03 15:19:07 -0800 | [diff] [blame] | 9 | |
Yingdi Yu | 4f32463 | 2014-01-15 18:10:03 -0800 | [diff] [blame] | 10 | #include "../data.hpp" |
Alexander Afanasyev | c348f83 | 2014-02-17 16:35:17 -0800 | [diff] [blame] | 11 | #include "../encoding/tlv.hpp" |
Alexander Afanasyev | fa13f8e | 2014-01-03 15:19:07 -0800 | [diff] [blame] | 12 | |
| 13 | namespace ndn { |
| 14 | |
| 15 | /** |
| 16 | * Representing of SHA256-with-RSA signature in a data packet. |
| 17 | */ |
| 18 | class SignatureSha256WithRsa : public Signature { |
| 19 | public: |
| 20 | SignatureSha256WithRsa() |
| 21 | { |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 22 | m_info = Block(Tlv::SignatureInfo); |
| 23 | |
| 24 | m_type = Signature::Sha256WithRsa; |
| 25 | m_info.push_back(nonNegativeIntegerBlock(Tlv::SignatureType, Tlv::SignatureSha256WithRsa)); |
| 26 | m_info.push_back(m_keyLocator.wireEncode()); |
Alexander Afanasyev | fa13f8e | 2014-01-03 15:19:07 -0800 | [diff] [blame] | 27 | } |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 28 | |
| 29 | SignatureSha256WithRsa(const Signature& signature) |
Alexander Afanasyev | fa13f8e | 2014-01-03 15:19:07 -0800 | [diff] [blame] | 30 | : Signature(signature) |
| 31 | { |
| 32 | if (getType() != Signature::Sha256WithRsa) |
| 33 | throw Signature::Error("Incorrect signature type"); |
| 34 | |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 35 | m_info.parse(); |
| 36 | Block::element_const_iterator i = m_info.find(Tlv::KeyLocator); |
| 37 | if (i != m_info.elements_end()) |
Alexander Afanasyev | fa13f8e | 2014-01-03 15:19:07 -0800 | [diff] [blame] | 38 | { |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 39 | m_keyLocator.wireDecode(*i); |
Alexander Afanasyev | fa13f8e | 2014-01-03 15:19:07 -0800 | [diff] [blame] | 40 | } |
| 41 | } |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 42 | |
| 43 | const KeyLocator& |
Alexander Afanasyev | fa13f8e | 2014-01-03 15:19:07 -0800 | [diff] [blame] | 44 | getKeyLocator() const |
| 45 | { |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 46 | return m_keyLocator; |
Alexander Afanasyev | fa13f8e | 2014-01-03 15:19:07 -0800 | [diff] [blame] | 47 | } |
| 48 | |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 49 | void |
Alexander Afanasyev | fa13f8e | 2014-01-03 15:19:07 -0800 | [diff] [blame] | 50 | setKeyLocator(const KeyLocator& keyLocator) |
| 51 | { |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 52 | m_keyLocator = keyLocator; |
Alexander Afanasyev | fa13f8e | 2014-01-03 15:19:07 -0800 | [diff] [blame] | 53 | |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 54 | m_info.remove(ndn::Tlv::KeyLocator); |
| 55 | m_info.push_back(m_keyLocator.wireEncode()); |
Alexander Afanasyev | fa13f8e | 2014-01-03 15:19:07 -0800 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | private: |
Alexander Afanasyev | ff2d08f | 2014-04-07 18:28:25 -0700 | [diff] [blame] | 59 | KeyLocator m_keyLocator; |
Alexander Afanasyev | fa13f8e | 2014-01-03 15:19:07 -0800 | [diff] [blame] | 60 | }; |
| 61 | |
| 62 | } // namespace ndn |
| 63 | |
Yingdi Yu | fc40d87 | 2014-02-18 12:56:04 -0800 | [diff] [blame] | 64 | #endif //NDN_SECURITY_SIGNATURE_SHA256_WITH_RSA_HPP |