play-rsa 0.4.1

Implementation of RSA cryptography in Rust for pedagogical use
Documentation
[package]
name = "play-rsa"
version = "0.4.1"
authors = ["Jens Getreu <getreu@web.de>"]
edition = "2021"
readme = "README.md"
description = "Implementation of RSA cryptography in Rust for pedagogical use"
license = "MIT"
homepage = "https://github.com/getreu/play-rsa/"
repository = "https://github.com/getreu/play-rsa/"
categories = [ "Cryptography", "Algorithms", "Mathematics" ]
keywords = [ "RSA", "primes", "gcd", "invert" ]

[lib]
name = "libplayrsa"

[[bin]]
name = "playrsa"
path = "src/examples/main.rs"

[dependencies]
num = "0.2.1"
rustc-serialize = "0.3.24"
rand = "0.5"
primal = "0.2.3"
num-bigint = { version = "0.2.6", features = ["rand"] }