reallyme-crypto-dispatch 0.3.0

Algorithm dispatch, codec binding, and structural validation for cryptographic primitives.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// SPDX-FileCopyrightText: Copyright © 2026 ReallyMe LLC. All rights reserved
//
// SPDX-License-Identifier: Apache-2.0

mod key_exchange;
mod key_management;
mod signature;

pub use key_exchange::{derive_shared_secret, kem_decapsulate, kem_encapsulate};
pub use key_management::{derive_keypair, generate_keypair};
pub use signature::{sign, verify};