Skip to main content

gmcrypto_core/
lib.rs

1//! Constant-time-designed pure-Rust SM2 / SM3 / SM4 primitives.
2//!
3//! See the workspace `README.md` for scope, threat model, and the honest
4//! framing of the in-CI `dudect`-based timing-leak regression harness.
5//!
6//! # Modules
7//!
8//! - [`sm2`] — SM2 elliptic-curve sign / verify / encrypt / decrypt
9//!   (GB/T 32918). Comb-table fixed-base scalar mult (v0.3 W6). The
10//!   opt-in `sm2-key-exchange` feature (v1.1) adds
11//!   `sm2::key_exchange` — GM/T 0003.3 key agreement with key
12//!   confirmation (`Sm2KxInitiator` / `Sm2KxResponder` role
13//!   state-machines).
14//! - [`sm3`] — SM3 hash (GB/T 32905) with streaming `new/update/finalize`.
15//! - [`sm4`] — SM4 block cipher (GB/T 32907) + CBC and CTR modes
16//!   (single-shot and streaming). The opt-in `sm4-aead` feature adds
17//!   SM4-GCM (single-shot + incremental-input buffered) and SM4-CCM;
18//!   the opt-in `sm4-xts` feature adds SM4-XTS (GB/T 17964-2021,
19//!   single-shot + in-place multi-sector). v0.4 W3 adds an opt-in
20//!   bitsliced (table-less, gate-only) S-box behind the
21//!   `sm4-bitsliced` feature.
22//! - [`hmac`] — HMAC-SM3 (RFC 2104), single-shot + v0.3 W5 streaming.
23//! - [`kdf`] — PBKDF2-HMAC-SM3 (RFC 8018 §5.2).
24//! - [`asn1`] — strict-canonical DER reader / writer / OID constants
25//!   (v0.3 W1); GM/T 0009 SM2 ciphertext SEQUENCE; RFC 3279 SM2
26//!   signature SEQUENCE.
27//! - [`pem`] — RFC 7468 PEM codec (v0.3 W2; hand-rolled, `no_std`).
28//! - [`spki`] — RFC 5280 `SubjectPublicKeyInfo` for SM2 (v0.3 W2).
29//! - [`sec1`] — RFC 5915 `ECPrivateKey` + SEC1 uncompressed point (v0.3 W2).
30//! - [`pkcs8`] — RFC 5958 `OneAsymmetricKey` + RFC 8018 PBES2 (v0.3 W2).
31//! - [`traits`] — in-crate `Hash` / `Mac` / `BlockCipher` traits
32//!   (v0.3 W5). v0.4 W2 adds RustCrypto-trait fit (`digest::Digest`,
33//!   `digest::Mac`, `cipher::BlockCipherEncrypt`/`BlockCipherDecrypt`)
34//!   behind the opt-in `digest-traits` / `cipher-traits` features
35//!   (migrated to `digest 0.11` / `cipher 0.5` in v0.11).
36//!
37//! # Crate features
38//!
39//! - `default` — `no_std`, `alloc`-only. No optional dependencies.
40//! - `digest-traits` — opt-in (v0.4 W2). Implements `digest::Digest` for
41//!   [`sm3::Sm3`] and `digest::Mac` for [`hmac::HmacSm3`]. Pulls
42//!   `digest = "0.11"` — a pre-1.0 ecosystem crate, so a breaking `digest`
43//!   release is **not** covered by `gmcrypto-core`'s `SemVer` (bump your own).
44//! - `cipher-traits` — opt-in (v0.4 W2). Implements
45//!   `cipher::{BlockCipherEncrypt, BlockCipherDecrypt, BlockSizeUser,
46//!   KeySizeUser, KeyInit}` for [`sm4::Sm4Cipher`]. Pulls `cipher = "0.5"` —
47//!   a pre-1.0 ecosystem crate, so a breaking `cipher` release is **not**
48//!   covered by `gmcrypto-core`'s `SemVer` (bump your own).
49//! - `sm4-bitsliced` — opt-in (v0.4 W3). Routes the SM4 S-box through
50//!   a bitsliced (table-less, gate-only) Itoh-Tsujii inversion in
51//!   GF(2^8). Byte-identical output to the default linear-scan path;
52//!   constant-time by construction (no table lookups, no branches on
53//!   secret bits).
54//! - `sm4-bitsliced-simd` — opt-in (v0.5 W4 scaffolding; AVX2 / NEON
55//!   intrinsic implementations land in v0.5.x). Implies
56//!   `sm4-bitsliced`. Default-off.
57//! - `crypto-bigint-scalar` — opt-in (v0.5 W5). Exposes
58//!   [`sm2::Sm2PrivateKey::from_scalar`] which takes a
59//!   `crypto_bigint::U256` directly. Default-off; the always-on
60//!   `from_bytes_be` constructor is the recommended path for callers
61//!   who don't want a transitive `crypto-bigint` dep.
62//! - `sm4-aead` — opt-in (v0.8). SM4-GCM (`sm4::mode_gcm`, plus the
63//!   v0.9 incremental-input buffered `sm4::gcm_streaming`) and
64//!   SM4-CCM (`sm4::mode_ccm`) authenticated encryption. Pulls the
65//!   workspace-internal `gmcrypto-simd` for the GHASH primitive
66//!   (CLMUL / PMULL / constant-time software fallback).
67//! - `sm4-xts` — opt-in (v0.12). SM4-XTS tweakable disk/sector mode
68//!   (`sm4::mode_xts`; GB/T 17964-2021, bit-reflected α-doubling —
69//!   **not** IEEE 1619), single-shot + the v0.15 in-place
70//!   multi-sector helpers. Pure-core, no new dependency.
71//!   Confidentiality only — XTS does not authenticate.
72//! - `sm2-key-exchange` — opt-in (v1.1). GM/T 0003.3 ≡ GB/T
73//!   32918.3-2016 key agreement with mandatory key confirmation
74//!   (`sm2::key_exchange`): consume-on-transition role state-machines,
75//!   single-use ephemerals, commit-on-confirm key release,
76//!   `ZeroizeOnDrop` agreed key. Pure-core, no new dependency;
77//!   byte-identical to the GM/T 0003.5 recommended-curve worked
78//!   example. The C ABI projection ships in `gmcrypto-c` (v1.2).
79//!
80//! # `wasm32-unknown-unknown`
81//!
82//! Builds clean as of v0.4 W1. The crate is `no_std + alloc` only and
83//! does NOT pull `getrandom`'s `wasm_js` backend or `wasm-bindgen` /
84//! `js-sys` into its default dep graph. Wasm callers wire their own
85//! `rand_core::Rng` impl — see the workspace `README.md`.
86
87#![no_std]
88#![deny(missing_docs)]
89#![doc(html_root_url = "https://docs.rs/gmcrypto-core/1.0.0")]
90
91extern crate alloc;
92
93pub mod asn1;
94pub mod hmac;
95pub mod kdf;
96pub mod pem;
97pub mod pkcs8;
98pub mod sec1;
99pub mod sm2;
100pub mod sm3;
101pub mod sm4;
102pub mod spki;
103// Not public API / not SemVer — low-level in-crate trait surface kept pub for internal cross-module + dev-crate use; the public trait fit is the opt-in RustCrypto digest/cipher impls.
104#[doc(hidden)]
105pub mod traits;
106
107/// Internal helper: canonical 32-byte big-endian encoding of a `U256`.
108///
109/// `crypto-bigint`'s `Encoding::to_be_bytes` returns an `EncodedUint`
110/// wrapper, not a `[u8; 32]`. v0.22 reshaped the byte-adjacent public
111/// types (`asn1::sig` signatures, `asn1::ciphertext::Sm2Ciphertext`) to
112/// `[u8; 32]` so the public API names no `crypto-bigint` type; this pins
113/// the conversion in one place for the internal producers (sign / encrypt /
114/// raw-ciphertext). Not part of the public API.
115#[inline]
116pub(crate) fn u256_to_be32(v: &crypto_bigint::U256) -> [u8; 32] {
117    v.to_be_bytes().into()
118}
119
120/// Workspace-wide failure type (v0.5 W5).
121///
122/// Every fallible public surface in `gmcrypto-core` that does not
123/// return `Option` / `bool` / `subtle::CtOption` returns
124/// `Result<_, Error>`. The single `Failed` variant is deliberate per
125/// the **failure-mode invariant** (see `SECURITY.md`): distinguishing
126/// failure modes leaks information to padding-oracle / invalid-curve /
127/// password-oracle attackers.
128///
129/// Per-module aliases keep the established import paths working:
130/// `sm2::Error`, `pem::Error`, `pkcs8::Error` are type aliases for
131/// this one type. Prior to v0.5 these were separate per-module enums
132/// (`SignError`, `EncryptError`, `DecryptError`, `pem::Error`,
133/// `pkcs8::Error`) all with a single `Failed` variant; v0.5 unifies
134/// them per Q5.16 in `docs/v0.5-scope.md`.
135#[derive(Debug, Clone, Copy, PartialEq, Eq)]
136#[non_exhaustive]
137pub enum Error {
138    /// The operation failed. No further information is exposed —
139    /// distinguishing failure modes leaks attacker-useful signal.
140    Failed,
141}
142
143impl core::fmt::Display for Error {
144    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
145        f.write_str("gmcrypto-core operation failed")
146    }
147}
148
149impl core::error::Error for Error {}