2 unstable releases

0.1.0 Sep 21, 2019
0.0.9 Sep 21, 2019

#1794 in Parser implementations

Download history 422/week @ 2024-01-13 242/week @ 2024-01-20 230/week @ 2024-01-27 206/week @ 2024-02-03 388/week @ 2024-02-10 311/week @ 2024-02-17 420/week @ 2024-02-24 515/week @ 2024-03-02 402/week @ 2024-03-09 379/week @ 2024-03-16 271/week @ 2024-03-23 347/week @ 2024-03-30 319/week @ 2024-04-06 485/week @ 2024-04-13 412/week @ 2024-04-20 402/week @ 2024-04-27

1,657 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