1
2
3
4
5
6
7
8
//! A implementation of the SPARX block cipher for Rust.
//!
//! See <https://www.cryptolux.org/index.php/SPARX> for more information about SPARX.

#![cfg_attr(not(test), no_std)]

pub mod sparx128;
pub mod sparx64;