From 990f0f8da92a2d11828a7c05ca93bf0520b2a95e Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Thu, 6 Jul 2023 14:19:29 -0400 Subject: Add BIP324Cipher, encapsulating key agreement, derivation, and stream/AEAD ciphers Co-authored-by: dhruv <856960+dhruv@users.noreply.github.com> --- src/pubkey.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/pubkey.h') diff --git a/src/pubkey.h b/src/pubkey.h index 7d37504b01..00defa25a0 100644 --- a/src/pubkey.h +++ b/src/pubkey.h @@ -299,6 +299,9 @@ private: std::array m_pubkey; public: + /** Default constructor creates all-zero pubkey (which is valid). */ + EllSwiftPubKey() noexcept = default; + /** Construct a new ellswift public key from a given serialization. */ EllSwiftPubKey(const std::array& ellswift) : m_pubkey(ellswift) {} -- cgit v1.2.3