We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0d6c51 commit 54e94c3Copy full SHA for 54e94c3
README.md
@@ -1,5 +1,17 @@
1
-# attester
+# Attester
2
3
A minimalistic tool that does those things:
4
- Obtains an SGX DCAP quote (a.k.a. remote attestation), with the specified challenge embedded as report data
5
- Verifies an arbitrary quote, prints quote measurements, and fetches the unique platform identifier
6
+
7
+# How to run
8
+git clone https://github.com/proofofcloud/attester
9
+cd attester
10
+docker build -t attester .
11
+docker run \
12
+ --device /dev/sgx_enclave \
13
+ --device /dev/sgx_provision \
14
+ -v /etc/sgx_default_qcnl.conf:/etc/sgx_default_qcnl.conf:ro \
15
+ --rm attester get beefdeed
16
17
+ (replace beefdeed with your challenge)
0 commit comments