sendcipher_core/lib.rs
1/* Copyright (c) 2025-2026 Youcef Lemsafer */
2/* SPDX-License-Identifier: MIT */
3pub mod chunking;
4pub mod error;
5pub mod stream_decryptor;
6pub mod stream_encryptor;
7pub mod parallel_mapper;
8
9pub mod crypto;
10mod lcg;
11mod span;
12mod span_generator;
13
14#[cfg(feature = "wasm")]
15pub mod wasm_file_encryptor;
16#[cfg(feature = "wasm")]
17pub mod wasm_file_decryptor;
18#[cfg(test)]
19mod stream_cypher_tests;
20#[cfg(test)]
21mod test_utils;