#constant-time #serde #binary-data #binary-format #json-toml #binary-encoding

no-std serdect

Constant-time serde serializer/deserializer helpers for data that potentially contains secrets (e.g. cryptographic keys)

4 releases (2 breaking)

0.3.0-rc.0 Sep 10, 2024
0.3.0-pre.0 Jan 7, 2024
0.2.0 Feb 26, 2023
0.1.0 Mar 29, 2022

#123 in Encoding

Download history 70128/week @ 2024-07-30 86022/week @ 2024-08-06 91283/week @ 2024-08-13 78822/week @ 2024-08-20 90378/week @ 2024-08-27 102846/week @ 2024-09-03 93511/week @ 2024-09-10 95900/week @ 2024-09-17 97762/week @ 2024-09-24 101723/week @ 2024-10-01 98287/week @ 2024-10-08 108565/week @ 2024-10-15 110205/week @ 2024-10-22 98380/week @ 2024-10-29 112255/week @ 2024-11-05 108474/week @ 2024-11-12

452,813 downloads per month
Used in 489 crates (28 directly)

Apache-2.0 OR MIT

42KB
616 lines

RustCrypto: Constant-Time Serde Helpers

Crate Docs Build Status Apache 2.0/MIT Licensed MSRV

Constant-time serde serializer/deserializer helpers for data that potentially contains secrets (e.g. cryptographic keys)

Documentation

About

Serialization is a potential sidechannel for leaking sensitive secrets such as cryptographic keys.

This crate provides "best effort" constant-time helper methods for reducing the amount of timing variability involved in serializing/deserializing data when using serde, Rust's standard serialization framework.

These helper methods conditionally serialize data as hexadecimal using the constant-time base16ct crate when using human-readable formats such as JSON or TOML. When using a binary format, the data is serialized as-is into binary.

While this crate can't ensure that format implementations don't perform other kinds of data-dependent branching on the contents of the serialized data, using a constant-time hex serialization with human-readable formats should help reduce the overall timing variability.

serdect is tested against the following crates:

Minimum Supported Rust Version

Rust 1.70 or newer.

In the future, we reserve the right to change MSRV (i.e. MSRV is out-of-scope for this crate's SemVer guarantees), however when we do it will be accompanied by a minor version bump.

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.

Dependencies

~100–335KB