Original ChaCha20-Poly1305 construction
The original ChaCha20-Poly1305 construction can safely encrypt a practically unlimited number of messages with the same key, without any practical limit to the size of a message (up to ~ 2^64 bytes).
Example (combined mode)
Combined mode
In combined mode, the authentication tag is directly appended to the encrypted message. This is usually what you want.
The crypto_aead_chacha20poly1305_encrypt()
function encrypts a message m
whose length is mlen
bytes using a secret key k
(crypto_aead_chacha20poly1305_KEYBYTES
bytes) and public nonce npub
(crypto_aead_chacha20poly1305_NPUBBYTES
bytes).
The encrypted message, as well as a tag authenticating both the confidential message m
and adlen
bytes of non-confidential data ad
, are put into c
.
ad
can be a NULL
pointer with adlen
equal to 0
if no additional data are required.
At most mlen + crypto_aead_chacha20poly1305_ABYTES
bytes are put into c
, and the actual number of bytes is stored into clen
unless clen
is a NULL
pointer.
nsec
is not used by this particular construction and should always be NULL
.
The public nonce npub
should never ever be reused with the same key. The recommended way to generate it is to use randombytes_buf()
for the first message, and increment it for each subsequent message using the same key.
The crypto_aead_chacha20poly1305_decrypt()
function verifies that the ciphertext c
(as produced by crypto_aead_chacha20poly1305_encrypt()
) includes a valid tag using a secret key k
, a public nonce npub
, and additional data ad
(adlen
bytes).
ad
can be a NULL
pointer with adlen
equal to 0
if no additional data are required.
nsec
is not used by this particular construction and should always be NULL
.
The function returns -1
if the verification fails.
If the verification succeeds, the function returns 0
, puts the decrypted message into m
and stores its actual number of bytes into mlen
if mlen
is not a NULL
pointer.
At most clen - crypto_aead_chacha20poly1305_ABYTES
bytes will be put into m
.
Detached mode
Some applications may need to store the authentication tag and the encrypted message at different locations.
For this specific use case, “detached” variants of the functions above are available.
The crypto_aead_chacha20poly1305_encrypt_detached()
function encrypts a message m
with a key k
and a nonce npub
. It puts the resulting ciphertext, whose length is equal to the message, into c
.
It also computes a tag that authenticates the ciphertext as well as optional, additional data ad
of length adlen
. This tag is put into mac
, and its length is crypto_aead_chacha20poly1305_ABYTES
bytes.
nsec
is not used by this particular construction and should always be NULL
.
The crypto_aead_chacha20poly1305_decrypt_detached()
function verifies that the authentication tag mac
is valid for the ciphertext c
of length clen
bytes, the key k
, the nonce npub
and optional, additional data ad
of length adlen
bytes.
If the tag is not valid, the function returns -1
and doesn’t do any further processing.
If the tag is valid, the ciphertext is decrypted and the plaintext is put into m
. The length is equal to the length of the ciphertext.
nsec
is not used by this particular construction and should always be NULL
.
This helper function introduced in libsodium 1.0.12 creates a random key k
.
It is equivalent to calling randombytes_buf()
but improves code clarity and can prevent misuse by ensuring that the provided key length is always be correct.
Constants
crypto_aead_chacha20poly1305_KEYBYTES
crypto_aead_chacha20poly1305_NPUBBYTES
crypto_aead_chacha20poly1305_ABYTES
Algorithm details
Encryption: ChaCha20 stream cipher
Authentication: Poly1305 MAC
Notes
In order to prevent nonce reuse, if a key is being reused, it is recommended to increment the previous nonce instead of generating a random nonce for each message.
To prevent nonce reuse in a client-server protocol, either use different keys for each direction, or make sure that a bit is masked in one direction, and set in the other.
See also
ChaCha20 and Poly1305 based Cipher Suites for TLS - Specification of the original construction
Last updated