forked from rust-crypto-labs/rust-sike
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (27 loc) · 864 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
[package]
name = "rust-sike"
version = "0.2.0"
authors = ["Rémi Géraud-Stewart <[email protected]>", "Edmond de Roffignac <[email protected]>"]
edition = "2018"
description = "Implementation of the key encapsulation mechanism (KEM) and public-key encryption (pke) schemes of the Supersingular Isogeny Key Encapsulation (SIKE) protocol"
license = "MIT"
readme = "README.md"
keywords = ["crypto", "isogeny", "SIDH", "pke", "kem"]
categories = ["cryptography", "science"]
repository = "https://github.com/rust-crypto-labs/rust-sike"
[dependencies]
bitvec = "0.17"
getrandom = "0.1"
hex = "0.4"
once_cell = "1.4"
rug = { version = "1.10", features = ["integer"], default-features = false }
sha3 = "0.9"
[dev-dependencies]
criterion = "0.3"
[profile.release]
opt-level = 3
debug = false
lto = true
[[bench]]
name = "sike-bench"
harness = false