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 = "rsa")]
17pub mod rsa;
18
19#[cfg(feature = "stream")]
20pub mod stream;