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

KaPa Kajaani vs Ajax Sarkkiranta

Kolmonen - Northern Group · Finland · 12 Jul 2026, 14:00 UTC

Final score
2 : 1
Result
Won
Pick
KaPa Kajaani
Market
1x2
Model prob.
74.0%
Best price
1.49
Min odds
1.43
Stake factor
1.80

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)
Si3uRPABp0N8kIc6iIzklbJr9K9kFnAWgUNRESxcDL1HWZ0ZdBNWhnj9fImK6PzzRNsAccshBbOIA+ctQIAQWXle09MA/Y31ZeJ0Zuhsu76EEH1BscD2ULWgWHg6MaxGdB+nRiM+CKhiHOCIEZgPOnPKiCwZAt7BZsuXIp73EdT9cF+81FXFf3FP7cDrFa0XMnrB2HPTtA87ZFQRi/x2TJiMfWoQuLzjghy/B31tbvewQ56D8xtVk0qiWjt2Xt0sA3+3fYTZFZw7heOtTtj8ZoqKnWJqPW//CVkXSgrAORsXUYV412I6RRKr7CN/pMmoqghe0tRPj9+XR87RKhcj9AfntHHAbHHOsbWHjnQ=
key fingerprint sha256: 5442a19b5f73a8304df211a3e9a8396f8b73c83039cc3bac08fe31c2b9ede869
Decrypt it & read the pick
Decryption key (released after the match)
4812207c09504b35874565f9ca40178ae74cbf345fe280e1befc312969cf9dd5
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("Si3uRPABp0N8kIc6iIzklbJr9K9kFnAWgUNRESxcDL1HWZ0ZdBNWhnj9fImK6PzzRNsAccshBbOIA+ctQIAQWXle09MA/Y31ZeJ0Zuhsu76EEH1BscD2ULWgWHg6MaxGdB+nRiM+CKhiHOCIEZgPOnPKiCwZAt7BZsuXIp73EdT9cF+81FXFf3FP7cDrFa0XMnrB2HPTtA87ZFQRi/x2TJiMfWoQuLzjghy/B31tbvewQ56D8xtVk0qiWjt2Xt0sA3+3fYTZFZw7heOtTtj8ZoqKnWJqPW//CVkXSgrAORsXUYV412I6RRKr7CN/pMmoqghe0tRPj9+XR87RKhcj9AfntHHAbHHOsbWHjnQ="), c => c.charCodeAt(0));
const key  = Uint8Array.from("4812207c09504b35874565f9ca40178ae74cbf345fe280e1befc312969cf9dd5".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): 4812207c09504b35874565f9ca40178ae74cbf345fe280e1befc312969cf9dd5
  • IV / nonce (hex): 4a2dee44f001a7437c90873a
  • Ciphertext (hex): 888ce495b26bf4af64167016814351112c5c0cbd47599d197413568678fd7c898ae8fcf344db0071cb2105b38803e72d40801059795ed3d300fd8df565e27466e86cbbbe84107d41b1c0f650b5a058783a31ac46741fa746233e08a8621ce08811980f3a73ca882c1902dec166cb97229ef711d4fd705fbcd455c57f714fedc0eb15ad17327ac1d873d3b40f3b6454118bfc764c988c7d6a10b8bce3821cbf077d6d6ef7b0439e83f31b55934aa25a3b765edd2c037fb77d84d9159c3b85e3ad4ed8fc668a8a9d626a3d6fff0959174a0ac0391b17518578d7623a4512abec237fa4c9a8aa085ed2d44f8fdf9747ced12a
  • Auth tag (hex): 1723f407e7b471c06c71ceb1b5878e74

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