security: Update Signature abstraction to match 0.1.1 spec
This commit removes intermediate SignatureWithPublicKey data
structure. All uses of such data structure should be replaced with just
Signature and check that KeyLocator is present (hasKeyLocator()).
Change-Id: I1157e05c6a717ea28df91c4bfd76c7145b520a15
Refs: #1750
diff --git a/src/security/signature-sha256-with-ecdsa.hpp b/src/security/signature-sha256-with-ecdsa.hpp
index 5bf0500..a20e6b0 100644
--- a/src/security/signature-sha256-with-ecdsa.hpp
+++ b/src/security/signature-sha256-with-ecdsa.hpp
@@ -22,38 +22,32 @@
#ifndef NDN_SECURITY_SIGNATURE_SHA256_WITH_ECDSA_HPP
#define NDN_SECURITY_SIGNATURE_SHA256_WITH_ECDSA_HPP
-#include "signature-with-public-key.hpp"
+#include "../signature.hpp"
namespace ndn {
/**
* represents a Sha256WithEcdsa signature.
*/
-class SignatureSha256WithEcdsa : public SignatureWithPublicKey
+class SignatureSha256WithEcdsa : public Signature
{
public:
- class Error : public SignatureWithPublicKey::Error
+ class Error : public Signature::Error
{
public:
explicit
Error(const std::string& what)
- : SignatureWithPublicKey::Error(what)
+ : Signature::Error(what)
{
}
};
- SignatureSha256WithEcdsa()
- : SignatureWithPublicKey(Tlv::SignatureSha256WithEcdsa)
- {
- }
+ explicit
+ SignatureSha256WithEcdsa(const KeyLocator& keyLocator = KeyLocator());
explicit
- SignatureSha256WithEcdsa(const Signature& signature)
- : SignatureWithPublicKey(signature)
- {
- if (getType() != Tlv::SignatureSha256WithEcdsa)
- throw Error("Incorrect signature type");
- }
+ SignatureSha256WithEcdsa(const Signature& signature);
+
};
} // namespace ndn