|
| | ECC (KeyPair::Generic::PointerType keypair) |
| | Constructor.
|
| |
| | ECC (const KeyPair::ECC &keypair) |
| | Constructor.
|
| |
| | ECC (KeyPair::ECC &&keypair) |
| | Constructor.
|
| |
| | ECC (const ECC &other)=default |
| | Copy constructor.
|
| |
| | ECC (ECC &&other) noexcept=default |
| | Move constructor.
|
| |
|
virtual | ~ECC () noexcept=default |
| | Virtual destructor.
|
| |
| ECC & | operator= (const ECC &other)=default |
| | Copy assignment operator.
|
| |
| ECC & | operator= (ECC &&other) noexcept=default |
| | Move assignment operator.
|
| |
| PointerType | Clone () const noexcept override |
| | Clone the ECC crypter.
|
| |
| PointerType | Move () noexcept override |
| | Move the ECC crypter.
|
| |
| | Asymmetric (const Asymmetric &other)=default |
| | Copy constructor.
|
| |
| | Asymmetric (Asymmetric &&other) noexcept=default |
| | Move constructor.
|
| |
|
virtual | ~Asymmetric () noexcept=default |
| | Virtual destructor.
|
| |
| Asymmetric & | operator= (const Asymmetric &other)=default |
| | Copy assignment operator.
|
| |
| Asymmetric & | operator= (Asymmetric &&other) noexcept=default |
| | Move assignment operator.
|
| |
| KeyPair::Generic::PointerType | KeyPair () const noexcept |
| | Gets the keypair used for asymmetric encryption.
|
| |
| | Generic (const Generic &other)=default |
| | Copy constructor.
|
| |
| | Generic (Generic &&other) noexcept=default |
| | Move constructor.
|
| |
|
virtual | ~Generic () noexcept=default |
| | Virtual destructor.
|
| |
| Generic & | operator= (const Generic &other)=default |
| | Copy assignment operator.
|
| |
| Generic & | operator= (Generic &&other) noexcept=default |
| | Move assignment operator.
|
| |
| bool | Encrypt (std::span< const std::byte > input, Buffer::WriteOnly &output) const noexcept |
| | Encrypt data from input buffer to output buffer.
|
| |
| bool | Encrypt (const Buffer::ReadOnly &input, Buffer::WriteOnly &output) const noexcept |
| | Encrypt data from input buffer to output buffer.
|
| |
| bool | Encrypt (Buffer::ReadOnly &input, Buffer::WriteOnly &output) const noexcept |
| | Encrypt data from input buffer to output buffer, moving the input data.
|
| |
| Buffer::Consumer | Encrypt (Buffer::Consumer consumer, ReadMode mode=ReadMode::Move) const noexcept |
| | Encrypt data from a Consumer buffer.
|
| |
| bool | Decrypt (std::span< const std::byte > input, Buffer::WriteOnly &output) const noexcept |
| | Decrypt data from input buffer to output buffer.
|
| |
| bool | Decrypt (const Buffer::ReadOnly &input, Buffer::WriteOnly &output) const noexcept |
| | Decrypt data from input buffer to output buffer.
|
| |
| bool | Decrypt (Buffer::ReadOnly &input, Buffer::WriteOnly &output) const noexcept |
| | Decrypt data from input buffer to output buffer, moving the input data.
|
| |
| Buffer::Consumer | Decrypt (Buffer::Consumer consumer, ReadMode mode=ReadMode::Move) const noexcept |
| | Decrypt data from a Consumer buffer.
|
| |
| enum Type | Type () const noexcept |
| | Gets the type of crypter.
|
| |
An asymmetric crypter class.