qfall_tools/compression.rs
1// Copyright © 2025 Niklas Siemer
2//
3// This file is part of qFALL-tools.
4//
5// qFALL-tools is free software: you can redistribute it and/or modify it under
6// the terms of the Mozilla Public License Version 2.0 as published by the
7// Mozilla Foundation. See <https://mozilla.org/en-US/MPL/2.0/>.
8
9//! Contains commonly used compression techniques in lattice-based cryptography.
10//!
11//! References:
12//! - \[1\] National Institute of Standards and Technology (2024).
13//! Module-Lattice-Based Key-Encapsulation Mechanism Standard.
14//! Federal Information Processing Standards Publication (FIPS 203).
15//! <https://doi.org/10.6028/NIST.FIPS.203>
16
17mod lossy_compression_fips203;
18
19pub use lossy_compression_fips203::LossyCompressionFIPS203;