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 evm/contracts/zk/pico/Groth16Verifier.sol
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ contract Verifier {
/// @notice Will revert with InvalidProof() if
/// * the input is not a square,
/// * the hint is incorrect, or
/// * the input coefficents are not reduced.
/// * the input coefficients are not reduced.
/// @param a0 The real part of the input.
/// @param a1 The imaginary part of the input.
/// @param hint A hint which of two possible signs to pick in the equation.
Expand Down
2 changes: 1 addition & 1 deletion rust-crates/libraries/dcap-rs/src/trust_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use x509_verify::VerifyingKey;
use crate::utils::Expireable;

/// TrustStore is a specialized PKI (Public Key Infrastructure) implementation designed for SGX
/// attestation verification. It manages certificate chains, validates signatures, aand enforces
/// attestation verification. It manages certificate chains, validates signatures, and enforces
/// revocation checking to establish secure chains of trust from Intel's root certificates to
/// attestation data.
pub struct TrustStore {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ pub struct EnclaveIdentity {
/// Version of the structure.
pub version: u32,

/// The time the Enclave Identity Information was created. The time shalle be in UTC
/// The time the Enclave Identity Information was created. The time shall be in UTC
/// and the encoding shall be compliant to ISO 8601 standard (YYYY-MM-DDhh:mm:ssZ)
pub issue_date: chrono::DateTime<Utc>,

Expand Down
2 changes: 1 addition & 1 deletion rust-crates/libraries/qpl/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ pub enum SgxQlConfigVersion {
// typedef struct _sgx_ql_pck_cert_id_t
// {
// uint8_t *p_qe3_id; ///< The QE_ID used to identify the platform for PCK Cert Retrieval
// uint32_t qe3_id_size; ///< The Size of hte QE_ID (currently 16 bytes)
// uint32_t qe3_id_size; ///< The Size of the QE_ID (currently 16 bytes)
// sgx_cpu_svn_t *p_platform_cpu_svn; ///< Pointer to the platform's raw CPUSVN
// sgx_isv_svn_t *p_platform_pce_isv_svn; ///< Pointer to the platform's raw PCE ISVSVN
// uint8_t *p_encrypted_ppid; ///< Pointer to the encrypted PPID (Optional)
Expand Down