rs_idea/
lib.rs

1//! # IDEA - `rs_idea` - International Data Encryption Algorithm
2//!
3//! **Important Note: This crate is still a work in progress and is not ready for consumption.**
4//!
5//! IDEA (International Data Encryption Algorithm) is a block cipher developed by Xuejia Lai and James L. Massey of ETH
6//! Zurich in 1991. It's currently used in:
7//! - Pretty Good Privacy (PGP) for encryption of emails
8//! - Wired Equivalent Privacy (WEP) for securing wireless networks
9//!
10//! This crate implements IDEA as part of the [RustyShield](https://docs.rs/rs_shield/latest/rs_shield/) project.
11
12#![no_std]