aboutsummaryrefslogtreecommitdiff
path: root/include/signer/signer.hpp
diff options
context:
space:
mode:
authorLibravatar buttercat1791 <mjjurkoic@gmail.com>2024-05-20 22:25:27 -0500
committerLibravatar buttercat1791 <mjjurkoic@gmail.com>2024-05-20 22:25:27 -0500
commita7d3e3d2ce1797fc2b7fc918684777ae75adb822 (patch)
tree0d0d0a1e3e71e828c7092abc46da0352567462f2 /include/signer/signer.hpp
parentc371b309fcce7a024cd83e08bbbf53971fcf1133 (diff)
Local keypair generation for NIP-46 signing
Diffstat (limited to 'include/signer/signer.hpp')
-rw-r--r--include/signer/signer.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/signer/signer.hpp b/include/signer/signer.hpp
index 22a71c6..cc4fd03 100644
--- a/include/signer/signer.hpp
+++ b/include/signer/signer.hpp
@@ -2,6 +2,8 @@
#include <algorithm>
#include <random>
+#include <sstream>
+#include <tuple>
#include <plog/Init.h>
#include <plog/Log.h>
@@ -12,6 +14,9 @@ namespace nostr
{
namespace signer
{
+class ISigner;
+class INostrConnectSigner;
+
/**
* @brief An interface for Nostr event signing that implements NIP-46.
*/