Skip to main content

PacketRfc

Struct PacketRfc 

Source
pub struct PacketRfc {
    pub version: u32,
    pub vdf: VdfStructure,
    pub jitter_seal: JitterSealStructure,
    pub content_hash_tree: ContentHashTree,
    pub correlation_proof: CorrelationProof,
    pub error_topology: Option<ErrorTopology>,
    pub enclave_vise: Option<EnclaveVise>,
    pub zk_verdict: Option<ZkProcessVerdict>,
    pub profile: Option<ProfileDeclaration>,
    pub privacy_budget: Option<PrivacyBudgetCertificate>,
    pub key_rotation: Option<KeyRotationMetadata>,
    pub extensions: HashMap<String, Value>,
}
Expand description

RFC-compliant evidence packet structure.

Uses integer keys (1-19) for compact CBOR encoding per the CDDL schema. The structure is designed for RATS (Remote ATtestation procedureS) compatibility while maintaining privacy-by-construction principles.

Fields§

§version: u32

Schema version (always 1 for this version). Key 1 in CDDL.

§vdf: VdfStructure

VDF structure proving minimum elapsed time. Key 2 in CDDL.

§jitter_seal: JitterSealStructure

Jitter seal structure for behavioral entropy. Key 3 in CDDL.

§content_hash_tree: ContentHashTree

Content hash tree (Merkle structure). Key 4 in CDDL.

§correlation_proof: CorrelationProof

Spearman correlation proof. Key 5 in CDDL.

§error_topology: Option<ErrorTopology>

Error topology analysis (fractal patterns). Key 6 in CDDL.

§enclave_vise: Option<EnclaveVise>

Hardware observation post (enclave binding). Key 7 in CDDL.

§zk_verdict: Option<ZkProcessVerdict>

ZK process verdict for consistency. Key 8 in CDDL.

§profile: Option<ProfileDeclaration>

Profile declaration (tier and features). Key 9 in CDDL.

§privacy_budget: Option<PrivacyBudgetCertificate>

Privacy budget certificate. Key 18 in CDDL.

§key_rotation: Option<KeyRotationMetadata>

Key rotation metadata. Key 19 in CDDL.

§extensions: HashMap<String, Value>

Vendor extensions (string keys).

Implementations§

Source§

impl PacketRfc

Source

pub fn new_core( vdf: VdfStructure, jitter_seal: JitterSealStructure, content_hash_tree: ContentHashTree, correlation_proof: CorrelationProof, ) -> Self

Create a minimal Core-tier packet.

Source

pub fn validate(&self) -> Vec<String>

Validate the packet structure.

Source

pub fn is_valid(&self) -> bool

Trait Implementations§

Source§

impl Clone for PacketRfc

Source§

fn clone(&self) -> PacketRfc

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PacketRfc

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for PacketRfc

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for PacketRfc

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,