RFC-009 IANA Provisional · pending Closed-set organs 256-bit AID
👑 Seal

Attestation Standing Reference.

iqa is a URI scheme for citing the attestation standing of a subject — reported by one of three named organs (forge · tss · gateway) — without carrying the underlying proof. The scheme is submitted to IANA (Provisional, pending).

Citable standing

The address says where to ask; the state says what is currently true. Reading the syntax establishes nothing about any subject — standing is established only by the seal and by the answering organ.

"The URI is an entry fingerprint; the AID is the identity; the seal is the evidence."

One click — nothing installed, no administrator rights, removable later in the browser's protocol-handler settings. The address is iqa://<subject>.<organ>.<root>/<action>. Reaching it from a web page adds the browser's own reserved prefix, which is the same address, not a second protocol — same authority, same path, same derived ROUTE_SHARD. The form without that prefix reaches the same place through a one-time operating-system registration instead. Coverage: the identical handler shape (see rttp.com) was measured on Windows Chrome. The resolver page needs no registration at all.

IQA v1.2.6 · Live Attest, seal and verify — in your own browser iqa.org/V1.2.6 →

RFC-009 Performance Gates

The Speed of Trust

<150µs
Verification Latency
66.6x · Legacy 10ms ✓
<1µs
Seal Forging
50x · Legacy 50µs ✓
12ns
Drift Detection
83x · Locked ✓
1.2M/s
Auth Throughput
1,200x · Legacy 1k/s ✓
128-Bit Hard Absolute Numeric Standard

Core Mechanism

Certification

01. FIDELITY AUDIT

Authority is audited via the LogicFidelity128 manifold—aligned to 16 bytes for instantaneous register shunting.

// LogicFidelity128 (v1.3.0)
#[repr(C, align(16))]
pub struct LogicFidelity128 {
    pub node_aid: AID,              // Identity DNA
    pub current_fidelity_f64: f64,  // 1.0 = nominal fidelity
    pub audit_id_128: u128,         // Unique Forensic Shard
    pub temporal_drift_ns: u128,    // Deviation from 12ns
    pub audit_latency_ns: u128,     // Measured Authority Reflex
    pub audited_at_ns_128: u128,    // 12ns Jitter-locked Timestamp
}
02. RADIANT SEAL

A 256-bit Vibrating Cryptographic Shard forged by HMAC-SHA256, anchored to the node's AID DNA and its Territorial Soil (IP / DNS / Hardware IDs).

// Shard Anatomy: 256-bit Dual Suture (RFC-009-A)
Shard A 0-127   // first half of the 256-bit seal
Shard B 128-255 // second half — both halves are required
03. TEMPORAL SELF-SUPERVISION

Drift analysis against the recorded baseline. Deviation above the configured threshold demotes the node to ghost standing.

Pathogen Detection: 10ms Authority Ischemia
04. RESONANCE GATING

Verification results are reported to the diagnostic layer (RFC-014). No performance figure is published here without its measurement conditions.

TSS → diagnostic layer: reported, not measured here

⚠️ Seal requirement

Seal Verification Tax

Seal Verification Tax

Any attempt to execute logic or participate in Hive resonance without a verified Radiant Seal will trigger a mandatory 10ms Performance Penalty per heartbeat.

Radiant Path Denial

Operations that require a verified standing are not available to unverified nodes.

Indivisibility

A fragmented registry is treated as a quarantine case by the RPKI (RFC-003) layer.

Implementation Standard

TemporalSupervisor Trait

TSS is the Continuous Baptism protocol: it audits the node's execution pulse for bit-drift at 12ns precision, ensuring a node never drifts after receiving its seal.

pub trait TemporalSupervisor {
    /// Audits the node's execution pulse for bit-drift.
    /// Returns LogicFidelity128 shard.
    fn audit_logic_fidelity_12ns(&self, pulse_ptr: *const u128) -> LogicFidelity128 {
        let drift = self.measure_jitter_ns();
        let entropy = self.calculate_entropy_floor();

        if drift > 12 || entropy > 0.001 {
             self.trigger_authority_shunt(); // Shunt to the 10ms floor
        }

        LogicFidelity128::new(drift, entropy)
    }
}
RFC-009 Compliant 128-Bit Absolute <150µs Finality