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

Brønshøj vs HB Køge

Landspokal Cup · Denmark · 04 Aug 2026, 16:30 UTC

Final score
1 : 0
Result
Won
Pick
Brønshøj
Market
1x2
Model prob.
28.2%
Best price
4.63
Min odds
4.13
Stake factor
3.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)
k8+J0UjBXfbkT3eERW38xERNMiSvjARihx3CXB0wpsA2sjtloI9Tj+DS7Is1ky548ReiK8PqfmbaDV0R+Kn1adaMRIGGlDO5Y5KJdtrVY0DGCa1b1vckQKtR/EXtJOT7x0HgCgIp3sRc+PXcPXORd574dhYYvzzTQ6uUUthiRUDSa9Ua7R1z4AsUnA0l7oTjNd/nuP1JbQXCzHQCX3p21dfGEZIxNGUBQ5GL6rHIkOwkabE6GoIoDql5tPmHrt1nE5e6r2R2gpUID+q/zRgmmMxgV7kaF8GrqbMj9UGeZllqvmNZ5TrvbUn/BhUv8Ug7jpYA4vdKlbbZyaaf3ysvgf43g9FzaMbcNQ==
key fingerprint sha256: 92069f3354442ddea568c7c226451fcfd17349ef33c38b61d9f2c4cef4979da7
Decrypt it & read the pick
Decryption key (released after the match)
90ed882f79dc671a6f352a7348e157763f1b985a74f1911a3ff165cfa53f1799
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("k8+J0UjBXfbkT3eERW38xERNMiSvjARihx3CXB0wpsA2sjtloI9Tj+DS7Is1ky548ReiK8PqfmbaDV0R+Kn1adaMRIGGlDO5Y5KJdtrVY0DGCa1b1vckQKtR/EXtJOT7x0HgCgIp3sRc+PXcPXORd574dhYYvzzTQ6uUUthiRUDSa9Ua7R1z4AsUnA0l7oTjNd/nuP1JbQXCzHQCX3p21dfGEZIxNGUBQ5GL6rHIkOwkabE6GoIoDql5tPmHrt1nE5e6r2R2gpUID+q/zRgmmMxgV7kaF8GrqbMj9UGeZllqvmNZ5TrvbUn/BhUv8Ug7jpYA4vdKlbbZyaaf3ysvgf43g9FzaMbcNQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("90ed882f79dc671a6f352a7348e157763f1b985a74f1911a3ff165cfa53f1799".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): 90ed882f79dc671a6f352a7348e157763f1b985a74f1911a3ff165cfa53f1799
  • IV / nonce (hex): 93cf89d148c15df6e44f7784
  • Ciphertext (hex): 456dfcc4444d3224af8c0462871dc25c1d30a6c036b23b65a08f538fe0d2ec8b35932e78f117a22bc3ea7e66da0d5d11f8a9f569d68c4481869433b963928976dad56340c609ad5bd6f72440ab51fc45ed24e4fbc741e00a0229dec45cf8f5dc3d7391779ef8761618bf3cd343ab9452d8624540d26bd51aed1d73e00b149c0d25ee84e335dfe7b8fd496d05c2cc74025f7a76d5d7c611923134650143918beab1c890ec2469b13a1a82280ea979b4f987aedd671397baaf64768295080feabfcd182698cc6057b91a17c1aba9b323f5419e66596abe6359e53aef6d49ff06152ff1483b8e9600e2f74a95b6d9
  • Auth tag (hex): c9a69fdf2b2f81fe3783d17368c6dc35

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