From 267d6823579b960d2993a380825831b6787a3680 Mon Sep 17 00:00:00 2001 From: Vaughn Nugent Date: Tue, 10 Sep 2024 15:48:04 +0000 Subject: refactor: update libs, quick error fixes, rng (#14) Co-authored-by: Michael J <37635304+buttercat1791@users.noreply.github.com> --- include/signer/noscrypt_signer.hpp | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'include/signer/noscrypt_signer.hpp') diff --git a/include/signer/noscrypt_signer.hpp b/include/signer/noscrypt_signer.hpp index 85188fa..0a7d0fd 100644 --- a/include/signer/noscrypt_signer.hpp +++ b/include/signer/noscrypt_signer.hpp @@ -145,12 +145,6 @@ private: #pragma region Cryptography - /** - * @brief Reseeds OpenSSL's pseudo-random number generator, using `/dev/random` as the seed, if - * possible. - */ - void _reseedRandomNumberGenerator(uint32_t bufferSize = 32); - /** * @brief Encrypts a string according to the standard specified in NIP-04. * @param input The string to be encrypted. @@ -182,16 +176,6 @@ private: std::string _decryptNip44(const std::string input); #pragma endregion - - #pragma region Logging - - inline void _logNoscryptInitResult(NCResult initResult) const; - - inline void _logNoscryptSecretValidationResult(NCResult secretValidationResult) const; - - inline void _logNoscryptPubkeyGenerationResult(NCResult pubkeyGenerationResult) const; - - #pragma endregion }; } // namespace signer } // namespace nostr -- cgit