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

PSV vs FC Eindhoven

Club Friendlies 1 · World · 28 Jul 2026, 18:00 UTC

Final score
3 : 0
Result
Won
Pick
PSV
Market
1x2
Model prob.
76.7%
Best price
1.43
Min odds
1.38
Stake factor
1.70

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)
WvTYF8FhhRd0N2OntSZwonIupjlDM4XzwCiIkSPe2x9Lv4WirLvf2+45MRcHvzRDWrSn9X69EUuBAwYsoUHc9wBefM7CXwflFkI/FNoSzegtv6DktdSMX01NbMoK/oJH4m3UDryC9lEoVOSr4ywAVgYKvz/oa6Haj2dRTiLhjC+ZDk4fgkols8lu16szSFd9IuFAjAMjjp2mtaq/bNpGSFcPHbtpnIR+6YwXr61e4A1Y1LjZtpTeAa3H5atOdHl1VeDnRVd1k+6kCDlxlJAGqszP9o708KoHzFAOymjzM2d/UWiBqyjHMzbO82mFugcqtz/uFlxu7Wx6xtHzPnOHcHrC
key fingerprint sha256: 265101f6dde961b0df16dac0127056b6c5e30f5d81ab530ede5b7652c0fefd7f
Decrypt it & read the pick
Decryption key (released after the match)
df3bb0f08c84a17addc014aaf632eca847a3b73b6c9ca6cbbd71c35b16310673
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("WvTYF8FhhRd0N2OntSZwonIupjlDM4XzwCiIkSPe2x9Lv4WirLvf2+45MRcHvzRDWrSn9X69EUuBAwYsoUHc9wBefM7CXwflFkI/FNoSzegtv6DktdSMX01NbMoK/oJH4m3UDryC9lEoVOSr4ywAVgYKvz/oa6Haj2dRTiLhjC+ZDk4fgkols8lu16szSFd9IuFAjAMjjp2mtaq/bNpGSFcPHbtpnIR+6YwXr61e4A1Y1LjZtpTeAa3H5atOdHl1VeDnRVd1k+6kCDlxlJAGqszP9o708KoHzFAOymjzM2d/UWiBqyjHMzbO82mFugcqtz/uFlxu7Wx6xtHzPnOHcHrC"), c => c.charCodeAt(0));
const key  = Uint8Array.from("df3bb0f08c84a17addc014aaf632eca847a3b73b6c9ca6cbbd71c35b16310673".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): df3bb0f08c84a17addc014aaf632eca847a3b73b6c9ca6cbbd71c35b16310673
  • IV / nonce (hex): 5af4d817c1618517743763a7
  • Ciphertext (hex): b52670a2722ea639433385f3c028889123dedb1f4bbf85a2acbbdfdbee39311707bf34435ab4a7f57ebd114b8103062ca141dcf7005e7ccec25f07e516423f14da12cde82dbfa0e4b5d48c5f4d4d6cca0afe8247e26dd40ebc82f6512854e4abe32c0056060abf3fe86ba1da8f67514e22e18c2f990e4e1f824a25b3c96ed7ab3348577d22e1408c03238e9da6b5aabf6cda4648570f1dbb699c847ee98c17afad5ee00d58d4b8d9b694de01adc7e5ab4e74797555e0e745577593eea4083971949006aacccff68ef4f0aa07cc500eca68f333677f516881ab28c73336cef36985ba072ab73f
  • Auth tag (hex): ee165c6eed6c7ac6d1f33e7387707ac2

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