Assignment operators
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...
A reference to this key pair.
| Name | Description |
|---|---|
| other | The key pair to copy from. |