Sodium follows the NaCl naming conventions.
Each operation defines functions and macros in a dedicated crypto_operation
namespace. For example, the “hash” operation defines:
crypto_hash_PRIMITIVE
.crypto_hash_BYTES
.crypto_hash_bytes(void)
.crypto_hash()
.Low-level APIs are defined in the crypto_operation_primitivename
namespace. For example, specific hash functions and their related macros are defined in the crypto_hash_sha256
, crypto_hash_sha512
, and crypto_hash_sha512256
namespaces.
To guarantee forward compatibility, specific implementations are intentionally not directly accessible. The library is responsible for choosing the best working implementation at runtime.
For compatibility with NaCl, the size of messages and ciphertexts are given as unsigned long long
values. Other values representing the size of an object in memory use the standard size_t
type.
An object type has only one public representation.
Points and scalars are always accepted and returned as a fixed-size, compressed, portable, and serializable bit string.
This simplifies usage and mitigates type confusion in languages that don’t enforce strict type safety.
Initializing the random number generator is the only operation that requires an internal lock.
sodium_init()
must be called before any other function. It picks the best implementations for the current platform, initializes the random number generator, and generates the canary for guarded heap allocations.
On POSIX systems, everything in libsodium is guaranteed to be thread-safe.
Cryptographic operations in Sodium never allocate memory on the heap (malloc
, calloc
, etc), except for crypto_pwhash
and sodium_malloc
.
For some operations, the traditional NaCl API requires extra zero bytes (*_ZEROBYTES
, *_BOXZEROBYTES
) before messages and ciphertexts.
However, this proved to be error-prone. Therefore, functions whose input requires transformations before they can be used are discouraged in Sodium.
When NaCl API compatibility is required, alternative functions that do not require extra steps are available and recommended.
Secrets are always compared in constant time using sodium_memcmp()
or crypto_verify_(16|32|64)()
.
All operations work on big-endian and little-endian systems and do not require pointers to be aligned.
C header files cannot be used in other programming languages.
For this reason, none of the documented functions are macros hiding the actual symbols.
When a balance is required, extra safety measures have a higher priority than speed. Examples include:
--enable-opt
switch remains available for more aggressive optimizations._keygen()
function.abort()
if something unusual is detected. This requires a few extra checks but is useful for spotting internal and application-specific bugs that tests don’t catch.The test suite covers all the functions, symbols, and macros of the library built with --enable-minimal
.
In addition to fixed test vectors, all functions include non-deterministic tests using variable-length, random data.
Non-scalar parameters are stored into a region allocated with sodium_malloc()
whenever possible. This immediately detects out-of-bounds accesses, including reads. The base address is also not guaranteed to be aligned, which helps detect mishandling of unaligned data.
The Makefile for the test suite also includes a check-valgrind
target, which checks that the whole suite passes with the Valgrind’s Memcheck, Helgrind, DRD, and SGCheck modules.
Continuous static analysis of the Sodium source code is performed using Coverity and GitHub’s CodeQL scanner.
On Windows, static analysis is done using Visual Studio and Viva64 PVS-Studio.
The Clang static analyzer is also used on macOS and Linux.
Releases are never shipped until all these tools report zero defects.
Continuous Integration is provided by Azure Pipelines, GitHub Actions, and AppVeyor.
In addition, the test suite must pass on the following environments. Libsodium is manually validated on all of these before every release and before merging a new change to the stable
branch.
-fsanitize=address,undefined
and Valgrind (Memcheck, Helgrind, DRD, and SGCheck)-fsanitize=address,undefined
and Valgrind (Memcheck, Helgrind, DRD, and SGCheck)crypto test vectors aims to generate large collections of test vectors for cryptographic primitives using different implementations.
libsodium validation verifies that the output of libsodium’s implementations match the test vectors. Each release must pass all these tests on the platforms listed above.
Bindings are essential to the libsodium ecosystem. It is expected that:
For these reasons, ABI stability is critical:
deprecated
attribute. They can also be removed from minimal builds.Any major change to the library should be tested for compatibility with popular bindings, especially those recompiling a copy of the library.