Skip to content

Commit 14bb292

Browse files
committed
Resolve conflicts and dont use dynamic dispatch for quote generators
2 parents aae97c1 + 7f4cd74 commit 14bb292

File tree

11 files changed

+1437
-551
lines changed

11 files changed

+1437
-551
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
/target
2+
remote-cert.crt
3+

Cargo.lock

Lines changed: 126 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
name = "attested-tls-proxy"
33
version = "0.1.0"
44
edition = "2024"
5-
license = "MIT OR Apache-2.0"
5+
license = "MIT"
66

77
[dependencies]
8-
tokio = { version = "1.48.0", features = ["full"]}
9-
tokio-rustls = { version = "0.26.4", default-features = false, features = ["ring"]}
8+
tokio = { version = "1.48.0", features = ["full"] }
9+
tokio-rustls = { version = "0.26.4", default-features = false, features = ["ring"] }
1010
sha2 = "0.10.9"
1111
x509-parser = "0.18.0"
1212
thiserror = "2.0.17"
@@ -20,7 +20,7 @@ configfs-tsm = "0.0.2"
2020
rand_core = { version = "0.6.4", features = ["getrandom"] }
2121
dcap-qvl = "0.3.4"
2222
hex = "0.4.3"
23-
hyper = { version = "1.7.0", features = ["server"] }
23+
hyper = { version = "1.7.0", features = ["server", "http2"] }
2424
hyper-util = "0.1.17"
2525
http-body-util = "0.1.3"
2626
bytes = "1.10.1"
@@ -31,7 +31,9 @@ serde = "1.0.228"
3131
base64 = "0.22.1"
3232
reqwest = { version = "0.12.23", default-features = false, features = ["rustls-tls-webpki-roots-no-provider"] }
3333
josekit = "0.10.3"
34-
# jwt-simple = "0.12.13"
34+
tracing = "0.1.41"
35+
tracing-subscriber = { version = "0.3.20", features = ["env-filter", "json"] }
36+
parity-scale-codec = "3.7.5"
3537

3638
[dev-dependencies]
3739
rcgen = "0.14.5"

LICENSE

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
The MIT License (MIT)
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19+
SOFTWARE.

0 commit comments

Comments
 (0)