This crate wraps the C API exposed by the Botan cryptography library. The current version requires Botan 2.8.0 or higher and Rust 1.64.0 or higher.
The following features are supported:
no-std
: Enable a no-std build (alloc
support is required)vendored
: Build a copy of the C++ library directly, without
relying on a system installed version.botan3
: Link against (the currently unreleased) Botan 3.x rather
than the default Botan 2.xCurrently the crate exposes ciphers, hashes, MACs, KDFs, password based key derivation (PBKDF2, Scrypt, Argon2, etc), bcrypt password hashes, random number generators, X.509 certificates, format preserving encryption, HOTP/TOTP, NIST key wrapping, multiprecision integers, and the usual public key algorithms (RSA, ECDSA, ECDH, DH, ...)
PRs and comments/issues happily accepted.