sgx-quote 0.1.0

Zero-copy Intel SGX quote parser using nom.
Documentation
  • Coverage
  • 2.38%
    1 out of 42 items documented0 out of 9 items with examples
  • Size
  • Source code size: 25.38 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.99 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 20s Average build duration of successful builds.
  • all releases: 20s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • nhynes/sgx-quote
    7 3 1
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • nhynes

sgx-quote

crates.io version Docs

Zero-copy parsing of Intel SGX quotes using nom.

Example

let quote = sgx_quote::Quote::parse(quote_bytes)?;
let sig = quote.signature;
ecdsa_verify(sig.attestation_key, quote.signed_message(), sig.isv_report_signature)?;

Fuzzing

This crate is fuzzed using cargo-fuzz. It hasn't found a panic yet, but this crate is also a dead simple nom parser, so I should hope not.