-
Notifications
You must be signed in to change notification settings - Fork 187
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 1.42 KB
/
Cargo.toml
File metadata and controls
38 lines (34 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "committing-aead"
version = "0.1.0"
description = """
Marker traits to indicate that an AEAD is committing, as well as pure Rust
implementations of the "padding fix" key-commitment scheme, the CTX scheme
(encryption only), and a modified version of CTX (named CTXish-HMAC) to
enable implementation of both encryption and decryption using the existing
AEAD trait interfaces.
"""
authors = ["RustCrypto Developers"]
edition = "2021"
license = "Apache-2.0 OR MIT"
readme = "README.md"
documentation = "https://docs.rs/committing-aead"
repository = "https://github.com/RustCrypto/AEADs/tree/master/committing-aead"
keywords = ["aead", "encryption", "committing-aead", "ctx"]
categories = ["cryptography", "no-std"]
[dependencies]
aead = { version = "0.5", default-features = false }
generic-array = { version = "0.14", default-features = false }
subtle = { version = "2.5", default-features = false }
digest = { version = "0.10.7", features = ["mac"] }
hmac = { version = "0.12.1" }
[dev-dependencies]
aes-gcm = { path = "../aes-gcm", version = "0.10.3", default-features = false, features = ["aes"] }
chacha20poly1305 = { path = "../chacha20poly1305", version = "0.10.1", default-features = false }
# Don't use hex-literal v0.4 to reduce multiple dependency version duplication
hex-literal = "0.3.4"
sha2 = { version = "0.10.8", default-features = false }
[features]
default = ["std"]
alloc = ["aead/alloc"]
std = ["alloc", "aead/std"]