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

Fortuna Düsseldorf II vs TSV Steinbach

Club Friendlies 3 · World · 31 Jul 2026, 12:00 UTC

Final score
2 : 4
Result
Lost
Pick
Fortuna Düsseldorf II
Market
1x2
Model prob.
31.1%
Best price
4.02
Min odds
3.69
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)
KiLTo2vCP6K3M3Wn2xy37L9klm9E4gM5YmmEp6aFcBwWNdHVTxV6/AX9OTDoRPalZXcb36x0JYS1QaobFqoRs6xQJi3vdBrSue6P5F2WyLkI0trCENepms7kykHQgqibJRfee0ETFL8PHyQEf6qTxwNRYHWw5VTR8DM7mSVEul5wMqH5NNbcKXwbnT2gmlqyxjejaxlSzBnZ7stzbmWqn8fAf0tzo/K6UyY2JJKOKHbMqVSO/vkSzIcqencRU/zsOpK57KcQbCUVF8ChmuRen/Q+cdbCjuWpXOby8v9uZctWFbZdHantEVlWWRWnA86tPWTKZ7E4Dq4aaeCTiwonH1FvIVb76E3u/CmxFyQd5N1ZpU8=
key fingerprint sha256: ce2eca17cd30f67d40c5aa59d672c8333a720768f27047384baf5e8b2ee9067e
Decrypt it & read the pick
Decryption key (released after the match)
73b0acf26218bb100306082958851f16444c7d0378736dbc1c947f4a69256231
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("KiLTo2vCP6K3M3Wn2xy37L9klm9E4gM5YmmEp6aFcBwWNdHVTxV6/AX9OTDoRPalZXcb36x0JYS1QaobFqoRs6xQJi3vdBrSue6P5F2WyLkI0trCENepms7kykHQgqibJRfee0ETFL8PHyQEf6qTxwNRYHWw5VTR8DM7mSVEul5wMqH5NNbcKXwbnT2gmlqyxjejaxlSzBnZ7stzbmWqn8fAf0tzo/K6UyY2JJKOKHbMqVSO/vkSzIcqencRU/zsOpK57KcQbCUVF8ChmuRen/Q+cdbCjuWpXOby8v9uZctWFbZdHantEVlWWRWnA86tPWTKZ7E4Dq4aaeCTiwonH1FvIVb76E3u/CmxFyQd5N1ZpU8="), c => c.charCodeAt(0));
const key  = Uint8Array.from("73b0acf26218bb100306082958851f16444c7d0378736dbc1c947f4a69256231".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): 73b0acf26218bb100306082958851f16444c7d0378736dbc1c947f4a69256231
  • IV / nonce (hex): 2a22d3a36bc23fa2b73375a7
  • Ciphertext (hex): db1cb7ecbf64966f44e20339626984a7a685701c1635d1d54f157afc05fd3930e844f6a565771bdfac742584b541aa1b16aa11b3ac50262def741ad2b9ee8fe45d96c8b908d2dac210d7a99acee4ca41d082a89b2517de7b411314bf0f1f24047faa93c703516075b0e554d1f0333b992544ba5e7032a1f934d6dc297c1b9d3da09a5ab2c637a36b1952cc19d9eecb736e65aa9fc7c07f4b73a3f2ba53263624928e2876cca9548efef912cc872a7a771153fcec3a92b9eca7106c251517c0a19ae45e9ff43e71d6c28ee5a95ce6f2f2ff6e65cb5615b65d1da9ed1159565915a703cead3d64ca67b1380eae1a69e0938b0a271f516f21
  • Auth tag (hex): 56fbe84deefc29b117241de4dd59a54f

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 #960334 · 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.