2 unstable releases

0.1.0 Sep 21, 2019
0.0.9 Sep 21, 2019

#1698 in Parser implementations

Download history 273/week @ 2024-03-24 359/week @ 2024-03-31 306/week @ 2024-04-07 510/week @ 2024-04-14 400/week @ 2024-04-21 484/week @ 2024-04-28 345/week @ 2024-05-05 416/week @ 2024-05-12 498/week @ 2024-05-19 422/week @ 2024-05-26 462/week @ 2024-06-02 367/week @ 2024-06-09 467/week @ 2024-06-16 502/week @ 2024-06-23 651/week @ 2024-06-30 560/week @ 2024-07-07

2,189 downloads per month
Used in 22 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
~18K SLoC