KeyPair::operator=

Assignment operators

Synopses

Declared in <key.h>

Copy-assign the key material from another key pair.

KeyPair&
operator=(KeyPair const& other);
» more...

Move-assign a key pair from another.

constexpr
KeyPair&
operator=(KeyPair&& other) noexcept = default;
» more...

Return Value

A reference to this key pair.

Parameters

NameDescription
otherThe key pair to copy from.