Mundane is a Rust cryptography library backed by BoringSSL that is difficult to misuse, ergonomic, and performant (in that order).
Mundane vendors a copy of the BoringSSL source, so BoringSSL does not need to be installed locally in order to build. However, the BoringSSL build system has the following dependencies:
MOVBE
. If using GNU binutils, you must have 2.22 or later.In order to avoid errors at link time due to conflicting symbols, we build BoringSSL with a custom prefix for all of its symbols which is based on the name and version of this crate. That way, even if multiple different versions of Mundane are present in the same dependency graph, none of the symbols from one version‘s BoringSSL will conflict with the symbols from another version’s BoringSSL.
Mundane supports being built on and for Linux and Mac. Windows support is under development. Cross-compilation is not supported.
Everything outside of the boringssl/boringssl
directory is licensed under an MIT license which can be found in the LICENSE
file. Everything in the boringssl/boringssl
directory is licensed with a license that can be found in the boringssl/boringssl/LICENSE
file.
Disclaimer: Mundane is not an officially supported Google product.