cx448 0.1.1

A pure-Rust implementation of Ed448 and Curve448 and Decaf. This crate also includes signing and verifying of Ed448 signatures, and x448.
Documentation
[dependencies.crypto-bigint]
default-features = false
features = ["generic-array"]
version = "0.5.5"

[dependencies.crypto_signature]
default-features = false
features = ["digest", "rand_core"]
optional = true
package = "signature"
version = "2.2"

[dependencies.elliptic-curve]
features = ["arithmetic", "bits", "hash2curve", "jwk", "pkcs8", "pem", "sec1"]
version = "0.13"

[dependencies.pkcs8]
features = ["alloc"]
optional = true
version = "0.10"

[dependencies.rand_core]
default-features = false
version = "0.6"

[dependencies.serdect]
optional = true
version = "0.3.0"

[dependencies.sha3]
default-features = false
version = "0.10"

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

[dependencies.zeroize]
default-features = false
optional = true
version = "1.8"

[dev-dependencies.hex]
version = "0.4"

[dev-dependencies.hex-literal]
version = "0.4"

[dev-dependencies.rand]
version = "0.8"

[dev-dependencies.rand_chacha]
version = "0.3"

[dev-dependencies.serde_bare]
version = "0.5"

[dev-dependencies.serde_json]
version = "1.0"

[features]
alloc = ["serdect/alloc", "zeroize/alloc"]
default = ["std", "signing", "pkcs8"]
pkcs8 = ["dep:pkcs8"]
serde = ["dep:serdect"]
signing = ["dep:crypto_signature", "zeroize"]
std = ["serdect/default", "zeroize/default", "crypto_signature/std"]
zeroize = ["dep:zeroize"]

[lib]
name = "cx448"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["cryptography"]
description = """
A pure-Rust implementation of Ed448 and Curve448 and Decaf.
This crate also includes signing and verifying of Ed448 signatures, and x448.
"""
documentation = "https://docs.rs/cx448"
edition = "2021"
homepage = "https://docs.rs/cx448"
keywords = ["cryptography", "decaf", "ed448", "ed448-goldilocks", "x448"]
license = "BSD-3-Clause"
name = "cx448"
readme = "README.md"
repository = "https://github.com/dignifiedquire/cx448"
rust-version = "1.83"
version = "0.1.1"