rs_rsa/
lib.rs

1//! # RSA - `rs_rsa` - Rivest-Shamir-Adleman
2//!
3//! **Important Note: This crate is still a work in progress and is not ready for consumption.**
4//!
5//! RSA (Rivest–Shamir–Adleman) is one of the first public-key cryptosystems and is widely used for secure data transmission. It is employed in a plethora of applications such as:
6//! - Secure email transmission,
7//! - Secure remote logins,
8//! - Secure internet communication protocols (HTTPS, SSL, TLS), etc.
9//!
10//! This crate implements RSA as part of the [RustyShield](https://docs.rs/rs_shield/latest/rs_shield/) project.
11
12#![no_std]