aboutsummaryrefslogtreecommitdiff
path: root/src/signer/noscrypt_signer.cpp
diff options
context:
space:
mode:
authorLibravatar buttercat1791 <mjjurkoic@gmail.com>2024-05-31 08:36:07 -0500
committerLibravatar buttercat1791 <mjjurkoic@gmail.com>2024-05-31 08:36:07 -0500
commit308840a3a3d80616e5a61bebbcdebb6d8ad99c66 (patch)
treece12f499bd19d81278f22cfe05d440bdc2b134a5 /src/signer/noscrypt_signer.cpp
parentc070fcbdebc237eae47f37fe7f2f50004b9010af (diff)
Use namespaces in definition files
Diffstat (limited to 'src/signer/noscrypt_signer.cpp')
-rw-r--r--src/signer/noscrypt_signer.cpp21
1 files changed, 11 insertions, 10 deletions
diff --git a/src/signer/noscrypt_signer.cpp b/src/signer/noscrypt_signer.cpp
index 6bc9af0..2b00cca 100644
--- a/src/signer/noscrypt_signer.cpp
+++ b/src/signer/noscrypt_signer.cpp
@@ -5,9 +5,10 @@
#include "signer/noscrypt_signer.hpp"
+using namespace nostr::signer;
using namespace std;
-nostr::signer::NoscryptSigner::NoscryptSigner(
+NoscryptSigner::NoscryptSigner(
shared_ptr<plog::IAppender> appender,
shared_ptr<nostr::service::INostrServiceBase> nostrService)
{
@@ -24,17 +25,17 @@ nostr::signer::NoscryptSigner::NoscryptSigner(
this->_localPublicKey = publicKey;
};
-nostr::signer::NoscryptSigner::~NoscryptSigner()
+NoscryptSigner::~NoscryptSigner()
{
NCDestroyContext(this->_noscryptContext.get());
};
-void nostr::signer::NoscryptSigner::receiveConnection(string connectionToken)
+void NoscryptSigner::receiveConnection(string connectionToken)
{
// Receive the connection token here.
};
-string nostr::signer::NoscryptSigner::initiateConnection(
+string NoscryptSigner::initiateConnection(
vector<string> relays,
string name,
string url,
@@ -74,7 +75,7 @@ string nostr::signer::NoscryptSigner::initiateConnection(
return ss.str();
};
-void nostr::signer::NoscryptSigner::sign(shared_ptr<data::Event> event)
+void NoscryptSigner::sign(shared_ptr<data::Event> event)
{
// Sign the event here.
};
@@ -83,7 +84,7 @@ void nostr::signer::NoscryptSigner::sign(shared_ptr<data::Event> event)
* @brief Initializes the noscrypt library context into the class's `context` property.
* @returns `true` if successful, `false` otherwise.
*/
-shared_ptr<NCContext> nostr::signer::NoscryptSigner::_initNoscryptContext()
+shared_ptr<NCContext> NoscryptSigner::_initNoscryptContext()
{
shared_ptr<NCContext> context;
auto contextStructSize = NCGetContextStructSize();
@@ -112,7 +113,7 @@ shared_ptr<NCContext> nostr::signer::NoscryptSigner::_initNoscryptContext()
* @remarks This keypair is intended for temporary use, and should not be saved or used outside
* of this class.
*/
-tuple<string, string> nostr::signer::NoscryptSigner::_createLocalKeypair()
+tuple<string, string> NoscryptSigner::_createLocalKeypair()
{
string privateKey;
string publicKey;
@@ -177,7 +178,7 @@ tuple<string, string> nostr::signer::NoscryptSigner::_createLocalKeypair()
#pragma region Logging
-void nostr::signer::NoscryptSigner::_logNoscryptInitResult(NCResult initResult)
+void NoscryptSigner::_logNoscryptInitResult(NCResult initResult)
{
switch (initResult) {
case NC_SUCCESS:
@@ -206,7 +207,7 @@ void nostr::signer::NoscryptSigner::_logNoscryptInitResult(NCResult initResult)
}
};
-void nostr::signer::NoscryptSigner::_logNoscryptSecretValidationResult(NCResult secretValidationResult)
+void NoscryptSigner::_logNoscryptSecretValidationResult(NCResult secretValidationResult)
{
if (secretValidationResult == NC_SUCCESS)
{
@@ -218,7 +219,7 @@ void nostr::signer::NoscryptSigner::_logNoscryptSecretValidationResult(NCResult
}
};
-void nostr::signer::NoscryptSigner::_logNoscryptPubkeyGenerationResult(NCResult pubkeyGenerationResult)
+void NoscryptSigner::_logNoscryptPubkeyGenerationResult(NCResult pubkeyGenerationResult)
{
switch (pubkeyGenerationResult) {
case NC_SUCCESS: