2 unstable releases

0.1.0 Sep 21, 2019
0.0.9 Sep 21, 2019

#1711 in Parser implementations

Download history 498/week @ 2023-11-27 408/week @ 2023-12-04 379/week @ 2023-12-11 262/week @ 2023-12-18 152/week @ 2023-12-25 156/week @ 2024-01-01 462/week @ 2024-01-08 392/week @ 2024-01-15 263/week @ 2024-01-22 205/week @ 2024-01-29 235/week @ 2024-02-05 411/week @ 2024-02-12 285/week @ 2024-02-19 455/week @ 2024-02-26 524/week @ 2024-03-04 204/week @ 2024-03-11

1,505 downloads per month
Used in 23 crates (11 directly)

Apache-2.0/MIT

10KB
222 lines

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.

Dependencies

~1MB
~15K SLoC