Start with Elliptic Curve point math. Slow, but it works.

This commit is contained in:
2018-12-30 21:00:10 -08:00
parent 62cb276888
commit eb82edea7e
17 changed files with 20145 additions and 1 deletions

View File

@@ -30,6 +30,9 @@ pub mod rsa;
/// new system, but might need to use them to interact with legacy systems or
/// protocols.
pub mod dsa;
/// The `ecdsa` module provides bare-bones support for ECDSA signing,
/// verification, and key generation.
pub mod ecdsa;
#[cfg(test)]
mod testing;