CKey::operator=

Assignment operators

Synopses

Declared in <key.h>

Copy-assign the key material from another private key.

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

Move-assign a private key from another.

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

Return Value

A reference to this key.

Parameters

NameDescription
otherThe key to copy from.