FSChaCha20Poly1305::operator=

Assignment operators

Synopses

Declared in <crypto/chacha20poly1305.h>

Deleted copy assignment (the secret key must not be duplicated).

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

Deleted move assignment (the secret key must not be duplicated).

FSChaCha20Poly1305&
operator=(FSChaCha20Poly1305&& other) = delete;
» more...

Return Value

A reference to this instance.

Parameters

NameDescription
otherThe instance that would be copied.