-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
27 lines (24 loc) · 833 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
[package]
name = "milenage"
version = "0.1.4"
authors = ["Olivier Le Moal <[email protected]>"]
edition = "2018"
license = "MIT"
readme = "README.md"
repository = "https://github.com/olivierlemoal/milenage-rs/"
description = "MILENAGE Algorithm Set"
keywords = ["telecom", "lte", "eutran", "epc", "security"]
categories = ["authentication", "cryptography"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hex-literal = "0.3.1"
sha2 = "0.9.3"
hmac = "0.10.1"
openssl = { version = "0.10", optional = true }
aes = { version = "0.6.0", optional = true }
aes-soft = { version = "0.6.4", optional = true }
block-modes = { version = "0.7.0", optional = true }
[features]
default = ["aes"]
openssl = ["dep:openssl"]
aes = ["dep:aes", "dep:aes-soft", "dep:block-modes"]