MuSig2SecNonce::operator=

Assignment operators

Synopses

Declared in <musig.h>

Copy assignment is disabled to avoid nonce reuse.

MuSig2SecNonce&
operator=(MuSig2SecNonce const& other) = delete;
» more...

Move-assign, taking ownership of another holder's secret nonce.

MuSig2SecNonce&
operator=(MuSig2SecNonce&& other) noexcept;
» more...

Return Value

A reference to this holder.

Parameters

NameDescription
otherThe holder that would be copied.