Skip to content

Commit 819f172

Browse files
committed
ctutils v0.4.0-pre.1
1 parent edf7b07 commit 819f172

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ctutils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Constant-time utility library with selection and equality testing support target
55
applications. Supports `const fn` where appropriate. Built on the `cmov` crate which provides
66
architecture-specific predication intrinsics. Heavily inspired by the `subtle` crate.
77
"""
8-
version = "0.4.0-pre.0"
8+
version = "0.4.0-pre.1"
99
authors = ["RustCrypto Developers"]
1010
license = "Apache-2.0 OR MIT"
1111
homepage = "https://github.com/RustCrypto/utils/tree/master/ctselect"

ctutils/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ library incorporated into `subtle` for a potential v3.0.
3737
- Guaranteed constant-time equality testing and conditional selection on `x86(_64)` and `aarch64`
3838
using `asm!` implementations in the `cmov` crate which call special constant-time CPU instructions
3939
with a portable "best effort" fallback on other platforms using bitwise arithmetic and `black_box`
40-
- No `Copy` (or even `Clone`) bounds, which means all functionality can work with heap-allocated
41-
types in addition to stack-allocated
40+
- No `Copy` bounds, which means all functionality can work with heap-allocated types in addition to
41+
stack-allocated
4242
- Expanded selection of traits: `CtFind` and `CtLookup` for arrays and slices
4343

4444
Many features of this crate are extractions from the [`crypto-bigint`] crate, where we implement all

0 commit comments

Comments
 (0)