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#![doc = include_str!("../README.md")]
8
9#[cfg(feature = "cbor")]
10pub mod cbor;
11
12#[cfg(feature = "eddsa")]
13pub mod eddsa;
14
15#[cfg(feature = "hpke")]
16pub mod hpke;
17
18#[cfg(all(feature = "hpke", feature = "cert"))]
19pub mod hpke_cert;
20
21#[cfg(feature = "rsa")]
22pub mod rsa;
23
24#[cfg(feature = "rand")]
25pub mod rand;
26
27#[cfg(feature = "stream")]
28pub mod stream;