blob: 46448073aecc5a619f1ca33c8db1580fa05aefea [file] [log] [blame]
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/**
* Copyright (c) 2013-2017 Regents of the University of California.
*
* This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
*
* ndn-cxx library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later version.
*
* ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
*
* You should have received copies of the GNU General Public License and GNU Lesser
* General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
* <http://www.gnu.org/licenses/>.
*
* See AUTHORS.md for complete list of ndn-cxx authors and contributors.
*/
#ifndef NDN_SIGNATURE_HPP
#define NDN_SIGNATURE_HPP
#include "common.hpp"
#include "signature-info.hpp"
namespace ndn {
/**
* A Signature is storage for the signature-related information (info and value) in a Data packet.
*/
class Signature
{
public:
class Error : public tlv::Error
{
public:
explicit
Error(const std::string& what)
: tlv::Error(what)
{
}
};
Signature() = default;
explicit
Signature(const Block& info, const Block& value = Block());
explicit
Signature(const SignatureInfo& info, const Block& value = Block());
operator bool() const
{
return m_info.getSignatureType() != -1;
}
/**
* @brief Get SignatureInfo in the wire format
*/
const Block&
getInfo() const
{
return m_info.wireEncode(); // will do nothing if wire already exists
}
/**
* @brief Get SignatureInfo
*/
const SignatureInfo&
getSignatureInfo() const
{
return m_info;
}
/**
* @brief Set SignatureInfo from a block
*
* @throws tlv::Error if supplied block is not formatted correctly
*/
void
setInfo(const Block& info);
/**
* @brief Set SignatureInfo
*/
void
setInfo(const SignatureInfo& info)
{
m_info = info;
}
/**
* @brief Get SignatureValue in the wire format
*/
const Block&
getValue() const
{
m_value.encode(); // will do nothing if wire already exists
return m_value;
}
/**
* @brief Get SignatureValue from a block
*
* @throws tlv::Error if supplied block has type different from SignatureValue
*/
void
setValue(const Block& value);
/**
* @brief Get signature type
*/
uint32_t
getType() const
{
return m_info.getSignatureType();
}
/**
* @brief Check if SignatureInfo block has a KeyLocator
*/
bool
hasKeyLocator() const
{
return m_info.hasKeyLocator();
}
/**
* @brief Get KeyLocator
*
* @throws Signature::Error if KeyLocator does not exist
*/
const KeyLocator&
getKeyLocator() const
{
return m_info.getKeyLocator();
}
/**
* @brief Set KeyLocator
*/
void
setKeyLocator(const KeyLocator& keyLocator)
{
m_info.setKeyLocator(keyLocator);
}
/**
* @brief Unset KeyLocator
*
* Note that specific signature types may provide advisory (non-virtual) override
* to prevent unsetting KeyLocator if it is required by the specification.
*/
void
unsetKeyLocator()
{
m_info.unsetKeyLocator();
}
public: // EqualityComparable concept
bool
operator==(const Signature& other) const
{
return getInfo() == other.getInfo() &&
getValue() == other.getValue();
}
bool
operator!=(const Signature& other) const
{
return !(*this == other);
}
protected:
SignatureInfo m_info;
mutable Block m_value;
};
} // namespace ndn
#endif // NDN_SIGNATURE_HPP