darkbio_crypto/lib.rs
1// crypto-rs: cryptography primitives and wrappers
2// Copyright 2025 Dark Bio. All rights reserved.
3//
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7#[cfg(feature = "eddsa")]
8pub mod eddsa;
9
10#[cfg(feature = "hpke")]
11pub mod hpke;
12
13#[cfg(all(feature = "hpke", feature = "cert"))]
14pub mod hpke_cert;
15
16#[cfg(feature = "doe")]
17mod cbor;
18
19#[cfg(feature = "doe")]
20pub mod doe;
21
22#[cfg(feature = "rsa")]
23pub mod rsa;
24
25#[cfg(feature = "stream")]
26pub mod stream;