rs_rsa 0.1.2

The rs_rsa crate is currently a placeholder for an upcoming cryptographic hashing algorithm implementation in Rust. This algorithm is currently under development and will be released as soon as possible. Please note that until it is available, the code will be configured to panic by default.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! # RSA - `rs_rsa` - Rivest-Shamir-Adleman
//!
//! **Important Note: This crate is still a work in progress and is not ready for consumption.**
//!
//! 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:
//! - Secure email transmission,
//! - Secure remote logins,
//! - Secure internet communication protocols (HTTPS, SSL, TLS), etc.
//!
//! This crate implements RSA as part of the [RustyShield](https://docs.rs/rs_shield/latest/rs_shield/) project.

#![no_std]