blob: 362e172559e4d7cada2fe08559c155e02044f370 [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -08002/**
Zhiyi Zhang387e57b2016-08-01 18:50:00 -07003 * Copyright (c) 2013-2016 Regents of the University of California.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * 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 Afanasyev2ba8f662014-01-05 22:53:18 -080020 */
21
22#ifndef NDN_SIGNATURE_HPP
23#define NDN_SIGNATURE_HPP
24
Alexander Afanasyev1c6976d2014-07-13 11:40:50 -070025#include "common.hpp"
Yingdi Yu4a557052014-07-09 16:40:37 -070026#include "signature-info.hpp"
Yingdi Yuebfa4cb2014-06-17 15:28:53 -070027
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080028namespace ndn {
29
30/**
31 * A Signature is storage for the signature-related information (info and value) in a Data packet.
32 */
Alexander Afanasyev2a7f7202014-04-23 14:25:29 -070033class Signature
34{
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080035public:
Steve DiBenedetto54ce6682014-07-22 13:22:57 -060036 class Error : public tlv::Error
Alexander Afanasyevff2d08f2014-04-07 18:28:25 -070037 {
38 public:
39 explicit
40 Error(const std::string& what)
Steve DiBenedetto54ce6682014-07-22 13:22:57 -060041 : tlv::Error(what)
Alexander Afanasyevff2d08f2014-04-07 18:28:25 -070042 {
43 }
44 };
Alexander Afanasyevfa13f8e2014-01-03 15:19:07 -080045
Steve DiBenedetto54ce6682014-07-22 13:22:57 -060046 /// @deprecated use tlv::SignatureTypeValue instead.
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080047 enum {
Steve DiBenedetto54ce6682014-07-22 13:22:57 -060048 Sha256 = tlv::DigestSha256,
49 Sha256WithRsa = tlv::SignatureSha256WithRsa,
50 Sha256WithEcdsa = tlv::SignatureSha256WithEcdsa
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080051 };
Alexander Afanasyevff2d08f2014-04-07 18:28:25 -070052
Yingdi Yu1b0311c2015-06-10 14:58:47 -070053 Signature() = default;
Alexander Afanasyevff2d08f2014-04-07 18:28:25 -070054
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070055 explicit
Yingdi Yu4a557052014-07-09 16:40:37 -070056 Signature(const Block& info, const Block& value = Block());
57
58 explicit
59 Signature(const SignatureInfo& info, const Block& value = Block());
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080060
61 operator bool() const
62 {
Yingdi Yu4a557052014-07-09 16:40:37 -070063 return m_info.getSignatureType() != -1;
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080064 }
65
Yingdi Yu1b0311c2015-06-10 14:58:47 -070066 /**
67 * @brief Get SignatureInfo in the wire format
68 */
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080069 const Block&
70 getInfo() const
71 {
Yingdi Yu4a557052014-07-09 16:40:37 -070072 return m_info.wireEncode(); // will do nothing if wire already exists
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080073 }
74
Yingdi Yu4a557052014-07-09 16:40:37 -070075 /**
Zhiyi Zhang387e57b2016-08-01 18:50:00 -070076 * @brief Get SignatureInfo
77 */
78 const SignatureInfo&
79 getSignatureInfo() const
80 {
81 return m_info;
82 }
83
84 /**
Yingdi Yu4a557052014-07-09 16:40:37 -070085 * @brief Set SignatureInfo from a block
86 *
Steve DiBenedetto54ce6682014-07-22 13:22:57 -060087 * @throws tlv::Error if supplied block is not formatted correctly
Yingdi Yu4a557052014-07-09 16:40:37 -070088 */
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080089 void
Yingdi Yu4a557052014-07-09 16:40:37 -070090 setInfo(const Block& info);
91
Yingdi Yu1b0311c2015-06-10 14:58:47 -070092 /**
93 * @brief Set SignatureInfo
94 */
Yingdi Yu4a557052014-07-09 16:40:37 -070095 void
96 setInfo(const SignatureInfo& info)
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -080097 {
Alexander Afanasyevff2d08f2014-04-07 18:28:25 -070098 m_info = info;
Alexander Afanasyevff2d08f2014-04-07 18:28:25 -070099 }
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800100
Yingdi Yu1b0311c2015-06-10 14:58:47 -0700101 /**
102 * @brief Get SignatureValue in the wire format
103 */
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800104 const Block&
105 getValue() const
106 {
Alexander Afanasyevff2d08f2014-04-07 18:28:25 -0700107 m_value.encode(); // will do nothing if wire already exists
108 return m_value;
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800109 }
110
Yingdi Yu1b0311c2015-06-10 14:58:47 -0700111 /**
112 * @brief Get SignatureValue from a block
113 *
114 * @throws tlv::Error if supplied block has type different from SignatureValue
115 */
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800116 void
Yingdi Yu1b0311c2015-06-10 14:58:47 -0700117 setValue(const Block& value);
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800118
Yingdi Yu1b0311c2015-06-10 14:58:47 -0700119 /**
120 * @brief Get signature type
121 */
Yingdi Yu4a557052014-07-09 16:40:37 -0700122 uint32_t
123 getType() const
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800124 {
Yingdi Yu4a557052014-07-09 16:40:37 -0700125 return m_info.getSignatureType();
Alexander Afanasyevff2d08f2014-04-07 18:28:25 -0700126 }
127
Yingdi Yu1b0311c2015-06-10 14:58:47 -0700128 /**
129 * @brief Check if SignatureInfo block has a KeyLocator
130 */
Yingdi Yu4a557052014-07-09 16:40:37 -0700131 bool
132 hasKeyLocator() const
133 {
134 return m_info.hasKeyLocator();
135 }
136
137 /**
138 * @brief Get KeyLocator
139 *
Yingdi Yu1b0311c2015-06-10 14:58:47 -0700140 * @throws Signature::Error if KeyLocator does not exist
Yingdi Yu4a557052014-07-09 16:40:37 -0700141 */
142 const KeyLocator&
143 getKeyLocator() const
144 {
145 return m_info.getKeyLocator();
146 }
147
Yingdi Yu1b0311c2015-06-10 14:58:47 -0700148 /**
149 * @brief Set KeyLocator
150 */
Alexander Afanasyev1c6976d2014-07-13 11:40:50 -0700151 void
152 setKeyLocator(const KeyLocator& keyLocator)
153 {
154 m_info.setKeyLocator(keyLocator);
155 }
Yingdi Yu4a557052014-07-09 16:40:37 -0700156
Alexander Afanasyeva7c7f9d2014-07-13 11:51:52 -0700157 /**
158 * @brief Unset KeyLocator
159 *
160 * Note that specific signature types may provide advisory (non-virtual) override
161 * to prevent unsetting KeyLocator if it is required by the specification.
162 */
163 void
164 unsetKeyLocator()
165 {
166 m_info.unsetKeyLocator();
167 }
168
Alexander Afanasyevff2d08f2014-04-07 18:28:25 -0700169public: // EqualityComparable concept
170 bool
171 operator==(const Signature& other) const
172 {
173 return getInfo() == other.getInfo() &&
174 getValue() == other.getValue();
175 }
176
177 bool
178 operator!=(const Signature& other) const
179 {
180 return !(*this == other);
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800181 }
182
Alexander Afanasyevfa13f8e2014-01-03 15:19:07 -0800183protected:
Yingdi Yu4a557052014-07-09 16:40:37 -0700184 SignatureInfo m_info;
Alexander Afanasyevff2d08f2014-04-07 18:28:25 -0700185 mutable Block m_value;
Alexander Afanasyev2ba8f662014-01-05 22:53:18 -0800186};
187
188} // namespace ndn
189
190#endif // NDN_SIGNATURE_HPP