fire-crypto 0.4.0

Crypto library providing encryption and signing.
Documentation
[dependencies._serde]
optional = true
package = "serde"
version = "1.0"

[dependencies.base64]
optional = true
version = "0.21"

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

[dependencies.chacha20]
optional = true
version = "0.9"

[dependencies.ed25519-dalek]
features = ["zeroize", "rand_core"]
optional = true
version = "2.0"

[dependencies.generic-array]
optional = true
version = "0.14"

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

[dependencies.rand]
version = "0.8"

[dependencies.universal-hash]
optional = true
version = "0.5"

[dependencies.x25519-dalek]
features = ["static_secrets"]
optional = true
version = "2.0"

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

[features]
b64 = ["base64"]
cipher = ["zeroize", "poly1305", "universal-hash", "chacha20", "x25519-dalek", "generic-array"]
hash = ["blake2", "generic-array"]
serde = ["_serde"]
signature = ["ed25519-dalek"]

[package]
authors = ["Sören Meier <info@soerenmeier.ch>"]
categories = ["cryptography"]
description = "Crypto library providing encryption and signing."
edition = "2021"
homepage = "https://fire-lib.com/"
keywords = ["crypto", "signature", "cipher"]
license = "MIT OR Apache-2.0"
name = "fire-crypto"
readme = "README.md"
repository = "https://github.com/fire-lib/fire-crypto"
rust-version = "1.63"
version = "0.4.0"
[package.metadata.docs.rs]
all-features = true