rs_ed25519 0.1.2

The rs_ed25519 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
//! # ED25519 - `rs_ed25519` - Ed25519
//!
//! **Important Note: This crate is still a work in progress and is not ready for consumption.**
//!
//! Ed25519 is a public-key signature system with several attractive features: it is secure, fast, and has a small footprint. It was introduced in 2011 and is used in several systems like:
//! - Distributed version control system (Git).
//! - The Tor anonymity network.
//! - Secure Shell (SSH) protocol, among others.
//!
//! This crate implements Ed25519 as part of the [RustyShield](https://docs.rs/rs_shield/latest/rs_shield/) project.

#![no_std]