mirror of
https://github.com/tlsnotary/tlsn-quote-verification.git
synced 2026-01-08 21:57:55 -05:00
693 B
693 B
This repository contains two approaches to verify SGX quotes from TLSNotary notary servers running in Intel SGX Trusted Execution Environments (TEEs):
intel-tee-quote-verification-docker: Uses Intel'stee-quote-verificationlibrary (uses Docker to handle the native dependencies)quote_verification: Native Rust to parse and verify the quote
Getting the Quote
To retrieve the SGX quote from a notary server:
- Visit the info page of the notary server.
- Copy the
rawQuotefield. - Decode the hex-encoded quote.
You can perform these steps in a single command:
curl https://notary.pse.dev/v0.1.0-alpha.9/info | jq -r '.quote.rawQuote' | xxd -r -p > quote.dat