The did:verifiedcar DID method defines a domain-anchored Decentralized Identifier system
optimized for Level 5 autonomous vehicle authentication. It achieves sub-1ms local identity
establishment — completing the full authentication handshake in under 800 microseconds — entirely
before V2X transport begins.
This separation of authentication from transport (Auth ≠ Transport) is the core architectural
contribution. At 120 km/h, a standard 100ms authentication handshake creates 3.3 meters of
uncontrolled vehicle travel. The did:verifiedcar method reduces this to 2.67 cm —
within Level 5 orchestration tolerance.
Decentralized Identifiers (DIDs) as defined by the W3C DID Core specification provide a
foundation for verifiable, self-sovereign identity. The did:verifiedcar method
extends this foundation to address the physical safety requirements of Level 5 autonomous
vehicle coordination.
Existing DID methods assume network-dependent resolution, introducing latency incompatible
with real-time vehicular safety systems. The did:verifiedcar method resolves
identity locally — without DNS, without network round-trips — establishing sovereign vehicle
identity before any data transmission occurs.
The method name is: verifiedcar
did:verifiedcar:<vehicle-identifier> Examples: did:verifiedcar:v1-0x4A2F-dubai-001 did:verifiedcar:enclave-node-AE-001 did:verifiedcar:root
| Component | Description |
|---|---|
| Method | verifiedcar |
| Vehicle ID | Alphanumeric identifier unique per vehicle or node |
| Root of Trust | verifiedcar.com — ICANN registered, 10-year time-lock |
The fundamental architectural principle of did:verifiedcar is the strict separation
of authentication from transport. Just as TLS session establishment does not equal TCP propagation
delay, the Mojo Enclave handshake does not equal V2X radio propagation.
LAYER 4 — V2X TRANSPORT DSRC / C-V2X / 5G-NR 500μs–10ms LAYER 3 — TOKEN CARRIER Signed Identity Token <10μs LAYER 2 — ORCHESTRATION Level 5 Coordination <100μs LAYER 1 — HANDSHAKE AUTH Mojo Enclave <800μs ← HERE
{
"@context": [
"https://www.w3.org/ns/did/v1",
"https://verifiedcar.com/ns/did/v1"
],
"id": "did:verifiedcar:v1-0x4A2F-dubai-001",
"controller": "did:verifiedcar:root",
"verificationMethod": [
{
"id": "did:verifiedcar:v1-0x4A2F-dubai-001#auth-key-1",
"type": "EcdsaSecp256k1VerificationKey2019",
"controller": "did:verifiedcar:v1-0x4A2F-dubai-001",
"publicKeyHex": "<ECDSA public key>"
}
],
"authentication": [
"did:verifiedcar:v1-0x4A2F-dubai-001#auth-key-1"
],
"service": [
{
"id": "did:verifiedcar:v1-0x4A2F-dubai-001#v2x-endpoint",
"type": "V2XAuthenticationService",
"serviceEndpoint": "https://verifiedcar.com/resolve"
}
],
"hardcodedLogic": {
"enclaveVersion": "1.0.0",
"handshakeLatency": "<800μs",
"lookupTable": "ROM_LUT_0x4A2F",
"safetyMargin": "2.67cm @ 120km/h"
}
}
A did:verifiedcar DID is created by registering a vehicle identity with the Mojo Enclave. The enclave generates an ECDSA key pair and anchors the public key to verifiedcar.com as root of trust.
Resolution is performed locally via ROM_LUT_0x4A2F — O(1) lookup with no DNS dependency. For external verification, the resolver at https://verifiedcar.com/resolve/{did} returns the full DID document.
DID documents may be updated by the controlling enclave. Updates are signed with the existing ECDSA key and timestamped. The root of trust at verifiedcar.com maintains version history.
Deactivation is performed by the Sovereign Architect via authority@hardcodedlogic.com. A deactivated DID returns a tombstone document with the deactivation timestamp.
A reference resolver implementation is available at:
https://github.com/hardcodedlogic/did-verifiedcarhttps://verifiedcar.com/resolvehttps://verifiedcar.com/.well-known/did-configuration.jsonThis specification conforms to the W3C Decentralized Identifiers (DIDs) v1.0 specification published at https://www.w3.org/TR/did-core/.
Sovereign Architect: Tamer Maher Eldebes
Organization: Hardcoded Logic — Sovereign Infrastructure
Domain: hardcodedlogic.com | verifiedcar.com
Contact: authority@hardcodedlogic.com
Date: February 2026
From Dubai with Love, and from Google with Logic.