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;
21
22#[cfg(all(feature = "hpke", feature = "ffi"))]
23pub mod hpke_ffi;
24
25#[cfg(all(feature = "hpke", feature = "cert", feature = "ffi"))]
26pub mod hpke_cert_ffi;