mirror of
https://github.com/matter-labs/teepot.git
synced 2025-07-21 23:23:57 +02:00
feat(api): add Intel DCAP API client module
Introduced a new `intel-dcap-api` crate for interacting with Intel's DCAP APIs. - Implemented various API client functionalities for SGX/TDX attestation services. - Added support for registration, certification, enclave identity, and FMSPC retrieval. Signed-off-by: Harald Hoyer <harald@matterlabs.dev>
This commit is contained in:
parent
93c35dad38
commit
ed84a424db
11 changed files with 1939 additions and 1 deletions
27
crates/intel-dcap-api/Cargo.toml
Normal file
27
crates/intel-dcap-api/Cargo.toml
Normal file
|
@ -0,0 +1,27 @@
|
|||
[package]
|
||||
name = "intel-dcap-api"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
homepage.workspace = true
|
||||
keywords = ["sgx", "tdx", "intel", "attestation", "confidential"]
|
||||
categories = ["api-bindings", "cryptography", "authentication"]
|
||||
|
||||
[dependencies]
|
||||
percent-encoding = "2.3.1"
|
||||
reqwest = { workspace = true, features = ["json"] }
|
||||
serde.workspace = true
|
||||
serde_json.workspace = true
|
||||
thiserror.workspace = true
|
||||
tokio.workspace = true
|
||||
url.workspace = true
|
||||
|
||||
[dev-dependencies]
|
||||
hex.workspace = true
|
||||
x509-cert.workspace = true
|
||||
|
||||
[features]
|
||||
default = ["reqwest/default-tls"]
|
||||
rustls = ["reqwest/rustls-tls"]
|
Loading…
Add table
Add a link
Reference in a new issue