SYSTEM: ONLINE BETA
Y
YUSUF AKÇAKAYA
FUSUY.DIGITAL.LAB
DIRECTORY / SANDBOXES / VICTORY-PROOFER.HMAC

VICTORY PROOFER

Token format + HMAC-SHA256 checksum checker (self-reported).

VICTORY PROOFER // VERIFIER

HMAC-SHA256

This verifier checks the token's format and HMAC-SHA256 checksum only. The signing key is delivered to your browser inside the page bundle, so anyone can mint a token: it is a keepsake, not a proof of identity.

πŸ“š

RESEARCH & LEARNING VAULT // HMAC Token Checker (Self-Reported)

Keyed-Hash Message Authentication Code (HMAC), nonces, and local checksum verification.

ACADEMIC & ALGORITHMIC REFERENCE
// HISTORICAL ORIGINS

Introduced by Bellare, Canetti, and Krawczyk in 1996 (RFC 2104), HMAC proves a message was authenticated by a holder of the shared secret key. That guarantee holds only while the key stays secret β€” here it is delivered inside the client bundle, so this deployment cannot authenticate anyone and the token is a self-reported keepsake.

// GOVERNING EQUATIONS
HMAC(K,m)=H((Kβ€²βŠ•opad)βˆ₯H((Kβ€²βŠ•ipad)βˆ₯m))\text{HMAC}(K, m) = H((K' \oplus opad) \mathbin{\Vert} H((K' \oplus ipad) \mathbin{\Vert} m))
// BROWSER IMPLEMENTATION

Parses structured victory tokens (RABBITHOLE-<TS_HEX>-<NONCE_HEX>-<SIG_HEX>), evaluates the 32-bit timestamp, and re-computes the HMAC-SHA256 checksum locally with zero server roundtrips. It validates structure and integrity against bit-flips β€” not authorship.

// GUIDED EXPERIMENTS TO TRY IN THIS SANDBOXNORMAL
1Token Format + Checksum Check

🎯 Action:Paste the token minted by the terminal easter egg β€” or hand-craft one, since the signing key ships in the page bundle.

✨ Observe:Instant breakdown showing the declared timestamp, UTC time, entropy nonce, and particle celebration. This is a self-reported keepsake, not an authorship proof.

2Bit-Flip Detection

🎯 Action:Modify a single character of a token and click Verify.

✨ Observe:Immediate checksum rejection, demonstrating the avalanche property of hash functions. This catches accidental corruption β€” not deliberate forgery, which the leaked key makes trivial.

// CURATED PAPERS, RFCS & RESOURCES