Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/README_Docker_and_RA.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ You will need this info to retrieve your FMSPC.
curl -v "https://api.trustedservices.intel.com/sgx/certification/v4/pckcert?encrypted_ppid={}&cpusvn={}&pcesvn={}&pceid={}" -H "Ocp-Apim-Subscription-Key:{YOUR_API_KEY}"
```

Replace the curly braces in the above command with the values acquired from `pckid_retrieval.csv` and `YOUR_API_KEY` with your API key from subsribing to Intel's PCS Service.
Replace the curly braces in the above command with the values acquired from `pckid_retrieval.csv` and `YOUR_API_KEY` with your API key from subscribing to Intel's PCS Service.

The response should look as follows:

Expand Down
2 changes: 1 addition & 1 deletion lib/src/primitives/eip4844.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pub use kzg::{eip_4844::deserialize_blob_rust, kzg_proofs::KZGSettings};
pub static KZG_SETTINGS_BIN: &[u8] = include_bytes!("../../kzg_settings/zkcrypto_kzg_settings.bin");

// The KZG settings under the concrete type of kzg backend
// We directly include the serialzed struct to avoid conversion cost in guest
// We directly include the serialized struct to avoid conversion cost in guest
// To generate the bytes, run:
//
// cargo run --bin gen_kzg_settings
Expand Down