-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (23 loc) · 983 Bytes
/
Cargo.toml
File metadata and controls
24 lines (23 loc) · 983 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "turnkey_enclave_encrypt"
version = "0.6.2"
edition = "2021"
license = "Apache-2.0"
description = "Utilities to encrypt and decrypt data sent to and from Turnkey secure enclaves, using HPKE (RFC 9180). Used in authentication, export, and import flows."
repository = "https://github.com/tkhq/rust-sdk"
homepage = "https://turnkey.com"
readme = "README.md"
documentation = "https://docs.rs/turnkey_enclave_encrypt"
keywords = ["turnkey", "enclave", "hpke", "encryption"]
categories = ["cryptography", "encoding"]
[dependencies]
bs58.workspace = true
hex = { workspace = true, features = ["serde", "alloc"] }
hpke.workspace = true
p256 = { workspace = true, features = ["ecdsa", "ecdsa-core", "std", "serde"] }
rand_core = { workspace = true, default-features = false }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = ["alloc"] }
thiserror.workspace = true
qos_p256 = { workspace = true }
zeroize = { workspace = true }