4 releases
Uses new Rust 2024
| new 0.3.0 | Dec 29, 2025 |
|---|---|
| 0.2.3 | Dec 29, 2025 |
| 0.1.4 |
|
| 0.0.0 |
|
#2700 in Cryptography
105KB
2K
SLoC
RustCrypto: Constant-Time Utilities
Constant-time utility library with selection and equality testing support targeting cryptographic
applications. Supports const fn where appropriate. Built on the cmov crate which provides
architecture-specific predication intrinsics. Heavily inspired by the subtle crate.
About
This crate contains constant-time equivalents of the bool and Option types (Choice and
CtOption respectively), along with traits that can be used in combination with them.
The CtOption type notably provides eagerly evaluated combinator methods (as opposed to the lazily
evaluated combinators on Option) which make it possible to write constant-time code using
an idiomatic Rust style.
This is an experimental next-generation constant-time library inspired by subtle, but for now we
recommend you continue to stick with subtle. We may attempt to get some of the changes in this
library incorporated into subtle for a potential v3.0.
What makes this crate different from subtle?
- Pervasive
const fnsupport- Almost all constructors/methods on
Choiceareconst fn Choicecan be constructed using variousconst fnpredicates on integer types, enabling writing constant-timeconst fnlogicCtOptionsupportsconst fnconstructors and*_copiedmethods to access the inner value when it's aCopytype- Macros to act as
CtOptionpseudo-combinators:map!andunwrap_or! - Expanded selection of
CtOptioncombinators that more closely mirrorsstd::option::Option
- Almost all constructors/methods on
- Guaranteed constant-time equality testing and conditional selection on
x86(_64)andaarch64usingasm!implementations in thecmovcrate which call special constant-time CPU instructions with a portable "best effort" fallback on other platforms using bitwise arithmetic andblack_box - No
Copy(or evenClone) bounds, which means all functionality can work with heap-allocated types in addition to stack-allocated
Many features of this crate are extractions from the crypto-bigint crate, where we implement all
core logic as const fn and needed solutions for implementing constant-time code despite the
unique constraints it imposes.
⚠️ Security Warning
The implementation contained in this crate has never been independently audited!
USE AT YOUR OWN RISK!
Minimum Supported Rust Version (MSRV) Policy
MSRV increases are not considered breaking changes and can happen in patch releases.
The crate MSRV accounts for all supported targets and crate feature combinations.
License
Licensed under either of:
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.