[dependencies._serde]
optional = true
package = "serde"
version = "1.0"
[dependencies.base64]
optional = true
version = "0.13"
[dependencies.blake2]
optional = true
version = "0.9"
[dependencies.chacha20]
features = ["hchacha", "expose-core"]
optional = true
version = "0.7"
[dependencies.ed25519-dalek]
optional = true
version = "1.0"
[dependencies.generic-array]
optional = true
version = "0.14"
[dependencies.poly1305]
optional = true
version = "0.7"
[dependencies.rand]
version = "0.7"
[dependencies.universal-hash]
optional = true
version = "0.4"
[dependencies.x25519-dalek]
optional = true
version = "1.1"
[dependencies.zeroize]
optional = true
version = "1.4"
[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@s-me.ch>"]
categories = ["cryptography"]
description = "Crypto library providing encryption and signing."
edition = "2018"
homepage = "https://fire-lib.com/"
keywords = ["crypto", "signature", "cipher"]
license = "MIT OR Apache-2.0"
name = "fire-crypto"
repository = "https://github.com/fire-lib/fire-crypto"
resolver = "2"
version = "0.2.1"
[package.metadata.docs.rs]
all-features = true