.\" This file is dual-licensed. Choose whichever you want. .\" .\" The first licence is a regular 2-clause BSD licence. The second licence .\" is the CC-0 from Creative Commons. It is intended to release Monocypher .\" to the public domain. The BSD licence serves as a fallback option. .\" .\" SPDX-License-Identifier: BSD-2-Clause OR CC0-1.0 .\" .\" ---------------------------------------------------------------------------- .\" .\" Copyright (c) 2017-2019, 2023 Loup Vaillant .\" Copyright (c) 2017-2018 Michael Savage .\" Copyright (c) 2017, 2019-2022 Fabio Scotoni .\" All rights reserved. .\" .\" .\" Redistribution and use in source and binary forms, with or without .\" modification, are permitted provided that the following conditions are .\" met: .\" .\" 1. Redistributions of source code must retain the above copyright .\" notice, this list of conditions and the following disclaimer. .\" .\" 2. Redistributions in binary form must reproduce the above copyright .\" notice, this list of conditions and the following disclaimer in the .\" documentation and/or other materials provided with the .\" distribution. .\" .\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS .\" "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT .\" LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR .\" A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT .\" HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, .\" SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT .\" LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE .\" OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" .\" ---------------------------------------------------------------------------- .\" .\" Written in 2017-2023 by Loup Vaillant, Michael Savage and Fabio Scotoni .\" .\" To the extent possible under law, the author(s) have dedicated all copyright .\" and related neighboring rights to this software to the public domain .\" worldwide. This software is distributed without any warranty. .\" .\" You should have received a copy of the CC0 Public Domain Dedication along .\" with this software. If not, see .\" .\" .Dd March 6, 2023 .Dt CRYPTO_LOCK 3MONOCYPHER .Os .Sh NAME .Nm crypto_aead_lock , .Nm crypto_aead_unlock , .Nm crypto_aead_init_x , .Nm crypto_aead_init_djb , .Nm crypto_aead_init_ietf , .Nm crypto_aead_write , .Nm crypto_aead_read .Nd authenticated encryption with additional data .Sh SYNOPSIS .In monocypher.h .Ft void .Fo crypto_aead_lock .Fa "uint8_t *cipher_text" .Fa "uint8_t mac[16]" .Fa "const uint8_t key[32]" .Fa "const uint8_t nonce[24]" .Fa "const uint8_t *ad" .Fa "size_t ad_size" .Fa "const uint8_t *plain_text" .Fa "size_t text_size" .Fc .Ft int .Fo crypto_aead_unlock .Fa "uint8_t *plain_text" .Fa "const uint8_t mac[16]" .Fa "const uint8_t key[32]" .Fa "const uint8_t nonce[24]" .Fa "const uint8_t *ad" .Fa "size_t ad_size" .Fa "const uint8_t *cipher_text" .Fa "size_t text_size" .Fc .Ft void .Fo crypto_aead_init_x .Fa "crypto_aead_ctx *ctx" .Fa "const uint8_t key[32]" .Fa "const uint8_t nonce[24]" .Fc .Ft void .Fo crypto_aead_init_djb .Fa "crypto_aead_ctx *ctx" .Fa "const uint8_t key[32]" .Fa "const uint8_t nonce[8]" .Fc .Ft void .Fo crypto_aead_init_ietf .Fa "crypto_aead_ctx *ctx" .Fa "const uint8_t key[32]" .Fa "const uint8_t nonce[12]" .Fc .Ft void .Fo crypto_aead_write .Fa "crypto_aead_ctx *ctx" .Fa "uint8_t *cipher_text" .Fa "uint8_t mac[16]" .Fa "const uint8_t *ad" .Fa "size_t ad_size" .Fa "const uint8_t *plain_text" .Fa "size_t text_size" .Fc .Ft int .Fo crypto_aead_read .Fa "crypto_aead_ctx *ctx" .Fa "uint8_t *plain_text" .Fa "const uint8_t mac[16]" .Fa "const uint8_t *ad" .Fa "size_t ad_size" .Fa "const uint8_t *cipher_text" .Fa "size_t text_size" .Fc .Sh DESCRIPTION .Fn crypto_aead_lock encrypts and authenticates a plaintext. It can be decrypted by .Fn crypto_aead_unlock . The arguments are: .Bl -tag -width Ds .It Fa key A 32-byte session key shared between the sender and the recipient. It must be secret and random. Different methods can be used to produce and exchange this key, such as Diffie-Hellman key exchange, password-based key derivation (the password must be communicated on a secure channel), or even meeting physically. See .Xr crypto_x25519 3monocypher for a building block for a key exchange protocol and .Xr crypto_argon2 3monocypher for password-based key derivation. .It Fa nonce A 24-byte number, used only once with any given session key. It does not need to be secret or random, but it does have to be unique. .Em Never use the same nonce twice with the same key. This would basically reveal the affected messages and leave you vulnerable to forgeries. The easiest (and recommended) way to generate this nonce is to select it at random. See .Xr intro 3monocypher about random number generation (use your operating system's random number generator). .Pp Note: .Fn crypto_aead_init_djb and .Fn crypto_aead_init_ietf use shorter nonces (8 and 12 bytes respectively), which .Em cannot be selected at random without risking a catastrophic reuse. For those shorter nonces, use a counter instead. .It Fa mac A 16-byte .Em message authentication code (MAC) that can only be produced by someone who knows the session key. This guarantee cannot be upheld if a nonce has been reused with the session key because doing so allows the attacker to learn the authentication key associated with that nonce. The MAC is intended to be sent along with the ciphertext. .It Fa ad Additional data to authenticate. It will .Em not be encrypted. This is used to authenticate relevant data that cannot be encrypted. May be .Dv NULL if .Fa ad_size is zero. .It Fa ad_size Length of the additional data, in bytes. .It Fa plain_text The secret message. Its contents will be kept hidden from attackers. Its length, however, will .Em not . Be careful when combining encryption with compression. See .Xr intro 3monocypher for details. .It Fa cipher_text The encrypted message. .It Fa text_size Length of both .Fa plain_text and .Fa cipher_text , in bytes. .El .Pp The .Fa cipher_text and .Fa plain_text arguments may point to the same buffer for in-place encryption. Otherwise, the buffers they point to must not overlap. .Pp .Fn crypto_aead_unlock first checks the integrity of an encrypted message. If it has been corrupted, .Fn crypto_aead_unlock does nothing and returns -1 immediately. Otherwise it decrypts the message then returns zero. .Em Always check the return value . .Ss Incremental interface For long messages that may not fit in memory, first initialise a context with .Fn crypto_aead_init_x , then encrypt each chunk with .Fn crypto_aead_write . The receiving end will initialise its own context with .Fn crypto_aead_init_x , then decrypt each chunk with .Fn crypto_aead_read . .Pp Just like .Fn crypto_aead_unlock , .Fn crypto_aead_read first checks the integrity of the encrypted chunk, then returns -1 immediately if it has been corrupted. Otherwise it decrypts the chunk then returns zero. .Em Always check the return value . .Pp The encryption key is changed between each chunk, providing a symmetric ratchet that enforces the order of the messages. Attackers cannot reorder chunks without .Fn crypto_aead_read noticing. .Sy Truncation however is not detected . You must detect the last chunk manually. Possible methods include using .Fa ad to mark the last chunk differently, prefixing all plaintext messages with a marking byte (and use a different marking byte for the last chunk), or sending the total message size up front and encode the remaining size in .Fa ad . Once the last chunk is sent or received, wipe the context with .Xr crypto_wipe 3monocypher . .Pp .Fn crypto_aead_init_djb and .Fn crypto_aead_init_ietf are variants of .Fn crypto_aead_init_x with a shorter nonce. .Em Those nonces are too short to be selected at random . Use a counter instead. .Pp In addition to its short nonce, .Fn crypto_aead_init_ietf has a smaller internal counter that limits the size of chunks to 256GiB. Exceeding this size leaks the contents of the chunk. It is provided strictly for compatibility with RFC 8439. .Sh RETURN VALUES .Fn crypto_aead_lock , .Fn crypto_aead_init_x , .Fn crypto_aead_init_djb , .Fn crypto_aead_init_ietf , and .Fn crypto_aead_write return nothing. .Fn crypto_aead_unlock and .Fn crypto_aead_read return 0 on success or -1 if the message was corrupted (i.e. .Fa mac mismatched the combination of .Fa key , .Fa nonce , .Fa ad , and .Fa cipher_text ) . Corruption can be caused by transmission errors, programmer error, or an attacker's interference. .Fa plain_text does not need to be wiped if the decryption fails. .Sh EXAMPLES The following examples assume the existence of .Fn arc4random_buf , which fills the given buffer with cryptographically secure random bytes. If .Fn arc4random_buf does not exist on your system, see .Xr intro 3monocypher for advice about how to generate cryptographically secure random bytes. .Pp Encryption: .Bd -literal -offset indent uint8_t key [32]; /* Random, secret session key */ uint8_t nonce [24]; /* Use only once per key */ uint8_t plain_text [12] = "Lorem ipsum"; /* Secret message */ uint8_t mac [16]; /* Message authentication code */ uint8_t cipher_text[12]; /* Encrypted message */ arc4random_buf(key, 32); arc4random_buf(nonce, 24); crypto_aead_lock(cipher_text, mac, key, nonce, NULL, 0, plain_text, sizeof(plain_text)); /* Wipe secrets if they are no longer needed */ crypto_wipe(plain_text, 12); crypto_wipe(key, 32); /* Transmit cipher_text, nonce, and mac over the network, * store them in a file, etc. */ .Ed .Pp To decrypt the above: .Bd -literal -offset indent uint8_t key [32]; /* Same as the above */ uint8_t nonce [24]; /* Same as the above */ const uint8_t cipher_text[12]; /* Encrypted message */ const uint8_t mac [16]; /* Received along with text */ uint8_t plain_text [12]; /* Secret message */ if (crypto_aead_unlock(plain_text, mac, key, nonce, NULL, 0, cipher_text, sizeof(plain_text))) { /* The message is corrupted. * Wipe key if it is no longer needed, * and abort the decryption. */ crypto_wipe(key, 32); } else { /* ...do something with the decrypted text here... */ /* Finally, wipe secrets if they are no longer needed */ crypto_wipe(plain_text, 12); crypto_wipe(key, 32); } .Ed .Pp In-place encryption: .Bd -literal -offset indent uint8_t key [32]; /* Random, secret session key */ uint8_t nonce[24]; /* Use only once per key */ uint8_t text [12] = "Lorem ipsum"; /* Secret message */ uint8_t mac [16]; /* Message authentication code */ arc4random_buf(key, 32); arc4random_buf(nonce, 24); crypto_aead_lock(text, mac, key, nonce, NULL, 0, text, sizeof(text)); /* Wipe secrets if they are no longer needed */ crypto_wipe(key, 32); /* Transmit cipher_text, nonce, and mac over the network, * store them in a file, etc. */ .Ed .Pp In-place decryption: .Bd -literal -offset indent uint8_t key [32]; /* Same as the above */ const uint8_t nonce[24]; /* Same as the above */ const uint8_t mac [16]; /* Received from along with text */ uint8_t text [12]; /* Message to decrypt */ if (crypto_aead_unlock(text, mac, key, nonce, NULL, 0, text, sizeof(text))) { /* The message is corrupted. * Wipe key if it is no longer needed, * and abort the decryption. */ crypto_wipe(key, 32); } else { /* ...do something with the decrypted text here... */ /* Finally, wipe secrets if they are no longer needed */ crypto_wipe(text, 12); crypto_wipe(key, 32); } .Ed .Pp Encrypt one message with the incremental interface: .Bd -literal -offset indent uint8_t key [32]; /* Random, secret session key */ uint8_t nonce [24]; /* Use only once per key */ uint8_t plain_text [12] = "Lorem ipsum"; /* Secret message */ uint8_t mac [16]; /* Message authentication code */ uint8_t cipher_text[12]; /* Encrypted message */ arc4random_buf(key, 32); arc4random_buf(nonce, 24); crypto_aead_ctx ctx; crypto_aead_init_x(&ctx, key, nonce); crypto_aead_write(&ctx, cipher_text, mac, NULL, 0, plain_text, sizeof(plain_text)); /* Wipe secrets if they are no longer needed */ crypto_wipe(plain_text, 12); crypto_wipe(key, 32); crypto_wipe(&ctx, sizeof(ctx)); /* Transmit cipher_text, nonce, and mac over the network, * store them in a file, etc. */ .Ed .Pp To decrypt the above: .Bd -literal -offset indent uint8_t key [32]; /* Same as the above */ uint8_t nonce [24]; /* Same as the above */ const uint8_t cipher_text[12]; /* Encrypted message */ const uint8_t mac [16]; /* Received along with text */ uint8_t plain_text [12]; /* Secret message */ crypto_aead_ctx ctx; crypto_aead_init_x(&ctx, key, nonce); if (crypto_aead_read(&ctx, plain_text, mac, NULL, 0, cipher_text, sizeof(plain_text))) { /* The message is corrupted. * Wipe key if it is no longer needed, * and abort the decryption. */ crypto_wipe(key, 32); crypto_wipe(&ctx, sizeof(ctx)); } else { /* ...do something with the decrypted text here... */ /* Finally, wipe secrets if they are no longer needed */ crypto_wipe(plain_text, 12); crypto_wipe(key, 32); crypto_wipe(&ctx, sizeof(ctx)); } .Ed .Sh SEE ALSO .Xr crypto_x25519 3monocypher , .Xr crypto_wipe 3monocypher , .Xr intro 3monocypher .Sh STANDARDS These functions implement RFC 8439. .Fn crypto_aead_lock and .Fn crypto_aead_init_x , use XChaCha20 instead of ChaCha20. .Fn crypto_aead_init_djb uses a 64-bit nonce and a 64-bit counter. .Fn crypto_aead_init_ietf is fully compatible with the RFC. Note that XChaCha20 derives from ChaCha20 the same way XSalsa20 derives from Salsa20 and benefits from the same security reduction (proven secure as long as ChaCha20 itself is secure). .Pp .Fn crypto_aead_read and .Fn crypto_aead_write preserve the nonce and counter defined in .Fn crypto_aead_init_x , .Fn crypto_aead_init_djb , or .Fn crypto_aead_init_ietf , and instead change the session key. The new session key is made from bytes [32..63] of the ChaCha20 stream used to generate the authentication key and encrypt the message. (Recall that bytes [0..31] are the authentication key, and bytes [64..] are used to encrypt the message.) .Sh HISTORY The .Fn crypto_lock and .Fn crypto_unlock functions first appeared in Monocypher 0.1. .Fn crypto_lock_aead and .Fn crypto_unlock_aead were introduced in Monocypher 1.1.0. In Monocypher 2.0.0, the underlying algorithms for these functions were changed from a custom XChaCha20/Poly1305 construction to an implementation of RFC 7539 (now RFC 8439) with XChaCha20 instead of ChaCha20. The .Fn crypto_lock_encrypt and .Fn crypto_lock_auth functions were removed in Monocypher 2.0.0. In Monocypher 4.0.0, the .Fn crypto_lock and .Fn crypto_unlock were removed, Functions were renamed and arguments reordered for consistency, and the incremental interface was added. .Sh CAVEATS Monocypher does not perform any input validation. Any deviation from the specified input and output length ranges results in .Sy undefined behaviour . Make sure your inputs are correct.