Sign in
← All matches
✅ Cryptographically verified · sealed pick #412

SpVgg Greuther Fürth vs Eltersdorf

Club Friendlies 3 · World · 08 Jul 2026, 16:00 UTC

Final score
0 : 3
Result
Won
Pick
Eltersdorf
Market
1x2
Model prob.
38.7%
Best price
4.62
Min odds
2.88
Stake factor
3.00

Proof this pick was locked in before kickoff

The pick was encrypted before kickoff and published the moment it was sealed to Telegram and GitHub, each carrying an independent timestamp. The encrypted batch is also anchored in Bitcoin — a public record nobody, including us, can alter or back-date. After the match the key is released; decrypting that exact pre-published message reveals the pick, proving it was fixed in advance, not cherry-picked.

Encrypted pick (AES-256-GCM)
dtpKP4CUVa6f0MQPbMBEda7a63GuU0wI4vOuNj+UlRPyl3+pzruI4FVPL0RY/F+sGyMKiDLUnVGnBvCgaeCAFkEFlNxOGrqeGqVjv/DUZpQyM6kZDxjnfm3d6Bvu3Df30aPP6NHKxtz9s5xpc3Ku7tbQHfocEsN1RG5RKd4ioAYIE/qp2SAn4djcxAyWSoAu01COt1M9EyJwdNJu+9gBbofCJsr49KK/QUh/lmjk8/Z2LmiiC9wUKwWOY6ocfsWsqU7JgrZQ2fiBXNjWuCbT2dfZR+dTUhVAvESdpXCAnfJh4FoqrzogsBWGDKwxaElK7sBHTzVzNqc4ff9Mf7WO9fxCWZlXgHTzNA==
key fingerprint sha256: 5426366d17b360740596dcc3b7c639c047fd15847ee37ecf8224c0b35278c6cd
Decrypt it & read the pick
Decryption key (released after the match)
ca599413ba4146e6010c07b499b6283d083f74ae90cf6c861e605d52fb26b253
Decrypt in CyberChef →
Verify it yourself — paste both values, no install

The Encrypted pick above is base64( nonce[12 bytes] + ciphertext + tag[16 bytes] ), AES-256-GCM. Zero-install check: open your browser console (press F12Console), paste this, press Enter — it decrypts the exact pick shown above:

const blob = Uint8Array.from(atob("dtpKP4CUVa6f0MQPbMBEda7a63GuU0wI4vOuNj+UlRPyl3+pzruI4FVPL0RY/F+sGyMKiDLUnVGnBvCgaeCAFkEFlNxOGrqeGqVjv/DUZpQyM6kZDxjnfm3d6Bvu3Df30aPP6NHKxtz9s5xpc3Ku7tbQHfocEsN1RG5RKd4ioAYIE/qp2SAn4djcxAyWSoAu01COt1M9EyJwdNJu+9gBbofCJsr49KK/QUh/lmjk8/Z2LmiiC9wUKwWOY6ocfsWsqU7JgrZQ2fiBXNjWuCbT2dfZR+dTUhVAvESdpXCAnfJh4FoqrzogsBWGDKwxaElK7sBHTzVzNqc4ff9Mf7WO9fxCWZlXgHTzNA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("ca599413ba4146e6010c07b499b6283d083f74ae90cf6c861e605d52fb26b253".match(/../g).map(h => parseInt(h, 16)));
crypto.subtle.importKey("raw", key, "AES-GCM", false, ["decrypt"])
  .then(k => crypto.subtle.decrypt({ name: "AES-GCM", iv: blob.slice(0, 12) }, k, blob.slice(12)))
  .then(b => console.log(new TextDecoder().decode(b)));

Prefer a GUI? The orange button opens CyberChef pre-filled. Or split the parts yourself for any AES-256-GCM tool:

  • Algorithm: AES-256-GCM
  • Key (hex): ca599413ba4146e6010c07b499b6283d083f74ae90cf6c861e605d52fb26b253
  • IV / nonce (hex): 76da4a3f809455ae9fd0c40f
  • Ciphertext (hex): 6cc04475aedaeb71ae534c08e2f3ae363f949513f2977fa9cebb88e0554f2f4458fc5fac1b230a8832d49d51a706f0a069e08016410594dc4e1aba9e1aa563bff0d466943233a9190f18e77e6ddde81beedc37f7d1a3cfe8d1cac6dcfdb39c697372aeeed6d01dfa1c12c375446e5129de22a0060813faa9d92027e1d8dcc40c964a802ed3508eb7533d13227074d26efbd8016e87c226caf8f4a2bf41487f9668e4f3f6762e68a20bdc142b058e63aa1c7ec5aca94ec982b650d9f8815cd8d6b826d3d9d7d947e753521540bc449da570809df261e05a2aaf3a20b015860cac3168494aeec0474f357336a738
  • Auth tag (hex): 7dff4c7fb58ef5fc425999578074f334

Any standard AES-256-GCM tool returns the exact same pick — the algorithm is a public standard.

How to verify the Bitcoin timestamp yourself

Bitcoin doesn't store the pick — it stores a 32-byte fingerprint (SHA-256) of the encrypted batch, via OpenTimestamps. That fingerprint is frozen in a public block nobody can alter or back-date. You can't spot it by eye on a block explorer (a block holds thousands of unrelated transactions) — you verify it with the .ots proof and any OpenTimestamps tool:

  1. Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
  2. Drop both into opentimestamps.org (or run ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time.
  3. See it independently: block #957050 · anchoring transaction (its OP_RETURN holds the commitment). The block's Timestamp is when it became permanent.

Note: Bitcoin anchoring lands ~30–60 min after sealing, and a block's timestamp is miner-set (approximate). So the exact “before kickoff” proof is the seal time above — timestamped instantly by Telegram/GitHub — while Bitcoin is the independent, un-forgeable anchor of permanence.