curve25519-dalek 0.14.4

A low-level cryptographic library for point, group, field, and scalar operations on a curve isomorphic to the twisted Edwards curve defined by -x²+y² = 1 - 121665/121666 x²y² over GF(2²⁵⁵ - 19).
Documentation
[package]
name = "curve25519-dalek"
version = "0.14.4"
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>",
           "Henry de Valence <hdevalence@hdevalence.ca>"]
readme = "README.md"
license = "BSD-3-Clause"
repository = "https://github.com/dalek-cryptography/curve25519-dalek"
homepage = "https://dalek.rs/curve25519-dalek"
documentation = "https://docs.rs/curve25519-dalek"
categories = ["cryptography", "no-std"]
keywords = ["cryptography", "curve25519", "elliptic", "curve", "ECC"]
description = "A low-level cryptographic library for point, group, field, and scalar operations on a curve isomorphic to the twisted Edwards curve defined by -x²+y² = 1 - 121665/121666 x²y² over GF(2²⁵⁵ - 19)."
exclude = [
    "**/.gitignore",
    ".gitignore",
    ".travis.yml",
]
build = "build.rs"

[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", ".cargo/registry/src/github.com-1ecc6299db9ec823/curve25519-dalek-0.13.2/rustdoc-include-katex-header.html"]

[badges]
travis-ci = { repository = "dalek-cryptography/curve25519-dalek", branch = "master"}

[dependencies.stdsimd]
version = "0.0.4"
optional = true

[dependencies.serde]
version = "1.0"
optional = true

[dependencies.rand]
optional = true
version = "0.4"

[dependencies.digest]
version = "0.7"

[dependencies.subtle]
version = "^0.3"
default-features = false

[dependencies.clear_on_drop]
version = "=0.2.3"

[dependencies.generic-array]
# same version that digest depends on
version = "0.9"

[dev-dependencies.sha2]
version = "0.7"

[dev-dependencies.serde_cbor]
version = "0.6"

[build-dependencies]
subtle = "^0.3"
rand = "0.4"
generic-array = "0.9"
digest = "0.7"
arrayref = "0.3.4"
clear_on_drop = "=0.2.3"

[build-dependencies.stdsimd]
version = "0.0.4"
optional = true

[build-dependencies.serde]
version = "1.0"
optional = true

[features]
nightly = ["radix_51", "subtle/nightly", "clear_on_drop/nightly"]
default = ["std"]
std = ["rand", "subtle/std"]
alloc = []
yolocrypto = ["avx2_backend"]
bench = []
# Radix-51 arithmetic using u128
radix_51 = []
# Include precomputed basepoint tables.  This is off by default so that build.rs can generate the tables, and then re-enabled by build.rs in the main-stage compilation.
precomputed_tables = []
# experimental avx2 support
avx2_backend = ["nightly", "stdsimd"]