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

Gosport Borough vs Malvern Town

Southern Premier League South · England · 29 Aug 2026, 14:00 UTC

Final score
4 : 2
Result
Won
Pick
Gosport Borough
Market
1X2
CLV vs fair close
+6.72%
Model prob.
50.8%
Best price
2.10
Min odds
2.01
Stake factor
2.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)
5aZcPVlvSa7/g2Xq8pnrv2mPXwM7QZckLB01KppKbcdEkdRHWnqsIJYU+NVjvKMsjwoG361p3HXEwkYdH4oLvsteiIhxppXQ8GNarf2NsAA50tpJ5vX4HLi7u5EO0sPn2qYjzaSGYp1htP2xpcuHiASLe9Vd2QL2HAhNJ9x7oQbBCwNmCU341FuQIGY3Z4xE2USgaznQHgf+e9fFx42U9jhSeD64q7RbHTnJGkrezL7Yt4QYd0wYc6SkwpvdOr9A+JX9o2YpED8aEZeDpGY3nV2nYeFSJxsAtlqfPafRhc3ZerqqQrnXZV2VlFOFEJHiAjy3GYOkE0xNzpeW8kxdaNskoD5o8TtZqTN5nCCpzg==
key fingerprint sha256: e8f035b3a623e247c0269a38998ee0446bb14db605bfa9c36ab53ea315496f20
Decrypt it & read the pick
Decryption key (released after the match)
ee06e491f626628fdad1b8556c30fde80fa28869f144716678adeb70a6ef4530
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("5aZcPVlvSa7/g2Xq8pnrv2mPXwM7QZckLB01KppKbcdEkdRHWnqsIJYU+NVjvKMsjwoG361p3HXEwkYdH4oLvsteiIhxppXQ8GNarf2NsAA50tpJ5vX4HLi7u5EO0sPn2qYjzaSGYp1htP2xpcuHiASLe9Vd2QL2HAhNJ9x7oQbBCwNmCU341FuQIGY3Z4xE2USgaznQHgf+e9fFx42U9jhSeD64q7RbHTnJGkrezL7Yt4QYd0wYc6SkwpvdOr9A+JX9o2YpED8aEZeDpGY3nV2nYeFSJxsAtlqfPafRhc3ZerqqQrnXZV2VlFOFEJHiAjy3GYOkE0xNzpeW8kxdaNskoD5o8TtZqTN5nCCpzg=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("ee06e491f626628fdad1b8556c30fde80fa28869f144716678adeb70a6ef4530".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): ee06e491f626628fdad1b8556c30fde80fa28869f144716678adeb70a6ef4530
  • IV / nonce (hex): e5a65c3d596f49aeff8365ea
  • Ciphertext (hex): f299ebbf698f5f033b4197242c1d352a9a4a6dc74491d4475a7aac209614f8d563bca32c8f0a06dfad69dc75c4c2461d1f8a0bbecb5e888871a695d0f0635aadfd8db00039d2da49e6f5f81cb8bbbb910ed2c3e7daa623cda486629d61b4fdb1a5cb8788048b7bd55dd902f61c084d27dc7ba106c10b0366094df8d45b90206637678c44d944a06b39d01e07fe7bd7c5c78d94f63852783eb8abb45b1d39c91a4adeccbed8b78418774c1873a4a4c29bdd3abf40f895fda36629103f1a119783a466379d5da761e152271b00b65a9f3da7d185cdd97abaaa42b9d7655d959453851091e2023cb71983a4134c4dce9796f24c5d
  • Auth tag (hex): 68db24a03e68f13b59a933799c20a9ce

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