-
Notifications
You must be signed in to change notification settings - Fork 161
/
Copy pathCargo.toml
41 lines (37 loc) · 930 Bytes
/
Cargo.toml
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
39
40
41
[package]
name = "aes-siv"
version = "0.6.0"
description = """
Pure Rust implementation of the AES-SIV Misuse-Resistant Authenticated
Encryption Cipher (RFC 5297) with optional architecture-specific
hardware acceleration
"""
authors = ["RustCrypto Developers"]
edition = "2018"
license = "Apache-2.0 OR MIT"
readme = "README.md"
documentation = "https://docs.rs/aes-siv"
repository = "https://github.com/RustCrypto/AEADs"
keywords = ["aead", "aes", "encryption", "siv"]
categories = ["cryptography", "no-std"]
[dependencies]
aead = "0.4"
aes = "0.7"
cipher = "0.3"
cmac = "0.6"
crypto-mac = "0.11"
ctr = "0.7"
dbl = "0.3"
pmac = "0.6"
zeroize = { version = "1", default-features = false }
[dev-dependencies]
blobby = "0.3"
hex-literal = "0.2"
[features]
default = ["alloc"]
std = ["aead/std", "alloc"]
alloc = ["aead/alloc"]
heapless = ["aead/heapless"]
stream = ["aead/stream"]
[package.metadata.docs.rs]
all-features = true