origin-crypto-sdk 0.6.2

Standalone cryptographic SDK with classical (Ed25519) and post-quantum (Falcon, SLH-DSA, ML-DSA, NTRU Prime, Curve41417) primitives. Hybrid signing by default.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: Apache-2.0

//! Legacy hybrid construction shim.
//!
//! **Deprecated.** The canonical implementation lives in [`crate::signing::hybrid`].
//! This module re-exports the same types for backward compatibility.
//!
//! New code should import directly from `signing::hybrid`:
//! ```ignore
//! use origin_crypto_sdk::signing::hybrid::{HybridSigningKeyBundle, falcon1024_keygen};
//! ```

pub use crate::signing::hybrid::*;