-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
28 lines (24 loc) · 1011 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
[package]
name = "signcryption"
version = "0.1.3"
edition = "2021"
repository = "https://github.com/Argyle-Software/signcryption"
authors = ["Mitchell Berry <[email protected]>"]
description = "Library implementing the Toorani-Beheshti signcryption scheme instantiated over Ristretto255 or Ed25519"
documentation = "https://docs.rs/signcryption"
license = "MIT OR Apache-2.0"
categories = ["cryptography"]
keywords = ["signcryption", "signature", "signing", "encryption"]
[dependencies]
rand = {version = "0.8.5", features = ["getrandom"]}
libsodium-sys-stable = {version = "1.19.30"}
subtle = "2.5.0"
zeroize = {version = "1.6.0", features = ["zeroize_derive"]}
aes-gcm = {version = "0.10.2", optional = true}
[features]
default = ["signcrypt"]
# Turn off default features if you wish to use another AEAD
signcrypt = ["aes-gcm"]
# Will download and install the latest version of libsodium
# Run this feature once if you don't have it installed
fetch-libsodium = ["libsodium-sys-stable/fetch-latest"]