aboutsummaryrefslogtreecommitdiff
path: root/include/Signature.hpp
diff options
context:
space:
mode:
authorAleksi Lindeman <0xdec05eba@gmail.com>2018-02-13 00:46:46 +0100
committerAleksi Lindeman <0xdec05eba@gmail.com>2018-02-13 00:46:54 +0100
commit9cd9c99e4bb4bbace8ba2d4a2dbd6830750ad521 (patch)
tree2fa81b1f61f2fd04e99c832e5dee8dd2af6cf333 /include/Signature.hpp
parentf24cd8b5708bdaf538508bfbca837299cecfba5b (diff)
Add database storage (in memory), need to store it on disk later
Diffstat (limited to 'include/Signature.hpp')
-rw-r--r--include/Signature.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/Signature.hpp b/include/Signature.hpp
index 90d5278..ea776ea 100644
--- a/include/Signature.hpp
+++ b/include/Signature.hpp
@@ -31,8 +31,10 @@ namespace odhtdb
{
friend class KeyPair;
public:
+ static PublicKey ZERO;
+
// Throws InvalidSignatureKeySize if size is not PUBLIC_KEY_NUM_BYTES
- PublicKey(char *data, size_t size);
+ PublicKey(const char *data, size_t size);
PublicKey(const PublicKey &other);
PublicKey& operator=(const PublicKey &other);
@@ -51,7 +53,7 @@ namespace odhtdb
friend class KeyPair;
public:
// Throws InvalidSignatureKeySize if size is not PRIVATE_KEY_NUM_BYTES
- PrivateKey(char *data, size_t size);
+ PrivateKey(const char *data, size_t size);
PrivateKey(const PrivateKey &other);
PrivateKey& operator=(const PrivateKey &other);