dig-capsule 0.5.0

The DIG Network .dig capsule data plane — one crate over the DIGS format, capsule read-crypto, compiler, staging, and the guest/host serve triad.
1
2
3
4
5
6
7
8
//! HKDF content-key derivation (paper §11.1/§11.4).
//!
//! The implementation now lives in [`crate::imp::core::crypto`] — the single source
//! of truth shared with the producer and the browser verifier. This module
//! re-exports it so host call-sites (`digstore-cli`, `dig-capsule-store`) are
//! unchanged.

pub use crate::imp::core::crypto::derive_decryption_key;