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

Binfield vs Hartley Wintney

Isthmian Division 1 South Central · England · 31 Aug 2026, 14:00 UTC

Final score
0 : 1
Result
Won
Pick
Hartley Wintney
Market
1X2
CLV vs fair close
+5.59%
Model prob.
53.3%
Best price
2.00
Min odds
1.91
Stake factor
2.20

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)
8NftrieMNjsyK9DDQnWAlfBRbyLIu0Dt395frCcNLdZg5BN2l0pkY5fHkxW8l0B+VHwt5bgOxoteGs7OrXE8f/dKgxGEFaJ7NS2AumHmSZnTsHQDrW+M7z2Y0MDgCLj4gzM/Lg+ehJJqmAlv0ke+Z/cmY6XM8ifup2cl9dnqBnZQCrkwW7Ji4PAGejPxOExxHnc/uu7QP2Esf1L2F343wuU2aDHLOWzqU6uwsb19MAtvMdkp9EkmgOPemxs2XRnz0Ixr0LHs3X3ET9Pvy0DaMC6ZmMYxLLQQxVDZHjwYdUfRWMGBM/TyOzJk8V5ahDVi/L4G7J6+sG8h1klLzB78RvTG4k9Le74zKsoW9w4=
key fingerprint sha256: 9564a7a705df125e19dcac55d9dfeb7fe3c8ea596382bfc28d400f180a9bd02c
Decrypt it & read the pick
Decryption key (released after the match)
fe71db1a18e54480b8f83f24fc8ba7a95d8c7c8a784512948962f86e8b615f95
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("8NftrieMNjsyK9DDQnWAlfBRbyLIu0Dt395frCcNLdZg5BN2l0pkY5fHkxW8l0B+VHwt5bgOxoteGs7OrXE8f/dKgxGEFaJ7NS2AumHmSZnTsHQDrW+M7z2Y0MDgCLj4gzM/Lg+ehJJqmAlv0ke+Z/cmY6XM8ifup2cl9dnqBnZQCrkwW7Ji4PAGejPxOExxHnc/uu7QP2Esf1L2F343wuU2aDHLOWzqU6uwsb19MAtvMdkp9EkmgOPemxs2XRnz0Ixr0LHs3X3ET9Pvy0DaMC6ZmMYxLLQQxVDZHjwYdUfRWMGBM/TyOzJk8V5ahDVi/L4G7J6+sG8h1klLzB78RvTG4k9Le74zKsoW9w4="), c => c.charCodeAt(0));
const key  = Uint8Array.from("fe71db1a18e54480b8f83f24fc8ba7a95d8c7c8a784512948962f86e8b615f95".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): fe71db1a18e54480b8f83f24fc8ba7a95d8c7c8a784512948962f86e8b615f95
  • IV / nonce (hex): f0d7edae278c363b322bd0c3
  • Ciphertext (hex): 42758095f0516f22c8bb40eddfde5fac270d2dd660e41376974a646397c79315bc97407e547c2de5b80ec68b5e1acecead713c7ff74a83118415a27b352d80ba61e64999d3b07403ad6f8cef3d98d0c0e008b8f883333f2e0f9e84926a98096fd247be67f72663a5ccf227eea76725f5d9ea0676500ab9305bb262e0f0067a33f1384c711e773fbaeed03f612c7f52f6177e37c2e5366831cb396cea53abb0b1bd7d300b6f31d929f4492680e3de9b1b365d19f3d08c6bd0b1ecdd7dc44fd3efcb40da302e9998c6312cb410c550d91e3c187547d158c18133f4f23b3264f15e5a843562fcbe06ec9ebeb06f21d6494bcc
  • Auth tag (hex): 1efc46f4c6e24f4b7bbe332aca16f70e

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