generic-ecies 0.3.0

ECIES encryption scheme for generic parameters
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "generic-ecies"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ECIES encryption scheme for generic parameters"
readme = "README.md"
keywords = ["elliptic-curves"]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/LFDT-Lockness/generic-ecies"

[package.metadata.docs.rs]
all-features = true

[features]
curve-ed25519 = ["generic-ec/curve-ed25519"]
curve25519aes128-cbchmac = [
    "dep:aes",
    "dep:cbc",
    "curve-ed25519",
    "dep:hmac",
]
curve25519xsalsa20hmac = [
    "dep:salsa20",
    "curve-ed25519",
    "dep:hmac",
    "dep:zeroize",
]
default = []

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

[dependencies.aes]
version = "0.8"
optional = true

[dependencies.cbc]
version = "0.1"
optional = true

[dependencies.cipher]
version = "0.4"
features = [
    "block-padding",
    "zeroize",
]

[dependencies.digest]
version = "0.10"

[dependencies.generic-ec]
version = "0.5.1"

[dependencies.hkdf]
version = "0.12"

[dependencies.hmac]
version = "0.12"
optional = true

[dependencies.rand_core]
version = "0.6"

[dependencies.salsa20]
version = "0.10"
optional = true

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "1"

[dependencies.zeroize]
version = "1.8"
optional = true

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

[dev-dependencies.rand_dev]
version = "0.1"