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

Ilves vs HJK Helsinki

Veikkausliiga · Finland · 31 Aug 2026, 16:00 UTC

Final score
1 : 2
Result
Lost
Pick
Ilves
Market
1X2
CLV vs fair close
+0.82%
Model prob.
28.0%
Best price
3.80
Min odds
3.65
Stake factor
1.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)
ZLp+XzkgyMPDNafwvoZIxQwi75bcilBxseqBUtBYtQOUFUOoF1ePmSp1Z6B6coi9o278X7kxiVA2xLuj4zYheh9+CGxlS8QY8DH9V8n/MWHv9iD0BzKizyJmBs600Hf2F393N5pPwZMeHuNwyyp7RxrY+MyF2+7cWSg1st9/+G1EwYOlBoJVGypBjyF5MilLU/HdP5bLunqD5QPAX/SqaQalWRSVF1VTCG4/QwBO+ZhoHt3ZT6g75uwaiy/glDq8nHvMatak4MxYrYNYkEQDC0UrYYbtWpfAM8CRdHv3cfVyNNN8ku9v7bvIgngxCjzUx55ATrIo7daxT/O1sZats+OMw4RU
key fingerprint sha256: c6394cae251885c4b967351bf68864e7eac6d7f3fd074b2299b3ede921d07ef4
Decrypt it & read the pick
Decryption key (released after the match)
9aa3df6e5170b2bcee8fa9d7dacc5914469ed8cde334ec4c989c77650795aa1b
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("ZLp+XzkgyMPDNafwvoZIxQwi75bcilBxseqBUtBYtQOUFUOoF1ePmSp1Z6B6coi9o278X7kxiVA2xLuj4zYheh9+CGxlS8QY8DH9V8n/MWHv9iD0BzKizyJmBs600Hf2F393N5pPwZMeHuNwyyp7RxrY+MyF2+7cWSg1st9/+G1EwYOlBoJVGypBjyF5MilLU/HdP5bLunqD5QPAX/SqaQalWRSVF1VTCG4/QwBO+ZhoHt3ZT6g75uwaiy/glDq8nHvMatak4MxYrYNYkEQDC0UrYYbtWpfAM8CRdHv3cfVyNNN8ku9v7bvIgngxCjzUx55ATrIo7daxT/O1sZats+OMw4RU"), c => c.charCodeAt(0));
const key  = Uint8Array.from("9aa3df6e5170b2bcee8fa9d7dacc5914469ed8cde334ec4c989c77650795aa1b".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): 9aa3df6e5170b2bcee8fa9d7dacc5914469ed8cde334ec4c989c77650795aa1b
  • IV / nonce (hex): 64ba7e5f3920c8c3c335a7f0
  • Ciphertext (hex): be8648c50c22ef96dc8a5071b1ea8152d058b503941543a817578f992a7567a07a7288bda36efc5fb931895036c4bba3e336217a1f7e086c654bc418f031fd57c9ff3161eff620f40732a2cf226606ceb4d077f6177f77379a4fc1931e1ee370cb2a7b471ad8f8cc85dbeedc592835b2df7ff86d44c183a50682551b2a418f217932294b53f1dd3f96cbba7a83e503c05ff4aa6906a5591495175553086e3f43004ef998681eddd94fa83be6ec1a8b2fe0943abc9c7bcc6ad6a4e0cc58ad83589044030b452b6186ed5a97c033c091747bf771f57234d37c92ef6fedbbc88278310a3cd4c79e404eb2
  • Auth tag (hex): 28edd6b14ff3b5b196adb3e38cc38454

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.