unknown_order 0.2.0

A crate for working with finite fields where the modulus is of unknown order, typtical for RSA, Paillier, Hyperelliptic curves, etc.
Documentation
[package]
authors = ["Michael Lodder <redmike7@gmail.com>"]
categories = ["cryptography"]
description = """A crate for working with finite fields where the modulus is of unknown order,
typtical for RSA, Paillier, Hyperelliptic curves, etc.
"""
documentation = "https://docs.rs/unknown_order"
edition = "2018"
exclude = [
    "*.sh",
]
keywords = ["cryptography", "rsa", "bignum", "gmp", "security"]
license = "Apache-2.0"
name = "unknown_order"
readme = "README.md"
repository = "https://github.com/mikelodder7/unknown_order"
version = "0.2.0"

[features]
default = ["rust"]
gmp = ["hex", "rand", "rust-gmp"]
rust = ["glass_pumpkin", "num-bigint", "num-integer", "num-traits", "rand"]
wasm = ["getrandom", "rand", "wasm-bindgen"]

[dependencies]
digest = "0.9"
glass_pumpkin = { version = "1.0.0", optional = true }
getrandom = { version = "0.2", features = ["js"], optional = true }
hex = { version = "0.4", optional = true }
num-bigint = { version = "0.4", optional = true }
num-integer = { version = "0.1", optional = true }
num-traits = { version = "0.2", optional = true }
openssl = { version = "0.10", optional = true }
rand = { version = "0.8", default-features = false, optional = true }
rust-gmp = { version = "0.5", optional = true }
serde = { version = "1.0", features = ["serde_derive"] }
wasm-bindgen = { version = "0.2", default-features = false, features = ["serde-serialize"], optional = true }
zeroize = "1.3"

[dev-dependencies]
blake2 = "0.9"
multibase = "0.9"
serde_json = "1.0"