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

Krems / Getzersdorf vs Austria Lustenau

Austrian Cup · Austria · 25 Jul 2026, 16:30 UTC

Final score
0 : 1
Result
Won
Pick
Austria Lustenau
Market
1x2
Model prob.
86.3%
Best price
1.26
Min odds
1.22
Stake factor
1.60

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)
sApKBlGzfebFBLVC9I5X6a9y3EuA8rgivgaFQHipE9UecCsNvQcbz3MinVhWZkPYoSxViV6Y/8ga3Eox+7vLvYuz1XlWTl/EP0jKrN+DfkFL5BX4b6+t/LCn1ujP9m/MkcAMFivdpVUEZNPqr6dpluYlOZRL9DIOrYchOow/Gs5JzlMDi9qWVcgWPm5FOaJhWUKsZ0kfgSJREB9Jii2cv1L7NLj6kavGMFJxvpp+1FpGn6hA+1kAai3Bo59Ch8thIiQ0PjrBzbZDo7xaG05cJAxcLBGZWLoC3q0jxm3eADr2xNRk6itfJuwlnr9690/5OP2dj/pYx+OEr8AjTcuihQPPtRKQMxR/+pFrZcYIfu0=
key fingerprint sha256: 3d84eaf0f7071b2cf12fb9cfc890f48e2f1081c8eb63a4087117178950b0a9fe
Decrypt it & read the pick
Decryption key (released after the match)
ef030dda5788b29d206d9779ee425ad78f0e0022c8833f779c32e741cd41d504
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("sApKBlGzfebFBLVC9I5X6a9y3EuA8rgivgaFQHipE9UecCsNvQcbz3MinVhWZkPYoSxViV6Y/8ga3Eox+7vLvYuz1XlWTl/EP0jKrN+DfkFL5BX4b6+t/LCn1ujP9m/MkcAMFivdpVUEZNPqr6dpluYlOZRL9DIOrYchOow/Gs5JzlMDi9qWVcgWPm5FOaJhWUKsZ0kfgSJREB9Jii2cv1L7NLj6kavGMFJxvpp+1FpGn6hA+1kAai3Bo59Ch8thIiQ0PjrBzbZDo7xaG05cJAxcLBGZWLoC3q0jxm3eADr2xNRk6itfJuwlnr9690/5OP2dj/pYx+OEr8AjTcuihQPPtRKQMxR/+pFrZcYIfu0="), c => c.charCodeAt(0));
const key  = Uint8Array.from("ef030dda5788b29d206d9779ee425ad78f0e0022c8833f779c32e741cd41d504".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): ef030dda5788b29d206d9779ee425ad78f0e0022c8833f779c32e741cd41d504
  • IV / nonce (hex): b00a4a0651b37de6c504b542
  • Ciphertext (hex): f48e57e9af72dc4b80f2b822be06854078a913d51e702b0dbd071bcf73229d58566643d8a12c55895e98ffc81adc4a31fbbbcbbd8bb3d579564e5fc43f48caacdf837e414be415f86fafadfcb0a7d6e8cff66fcc91c00c162bdda5550464d3eaafa76996e62539944bf4320ead87213a8c3f1ace49ce53038bda9655c8163e6e4539a2615942ac67491f812251101f498a2d9cbf52fb34b8fa91abc6305271be9a7ed45a469fa840fb59006a2dc1a39f4287cb612224343e3ac1cdb643a3bc5a1b4e5c240c5c2c119958ba02dead23c66dde003af6c4d464ea2b5f26ec259ebf7af74ff938fd9d8ffa58c7e384afc0234dcba285
  • Auth tag (hex): 03cfb5129033147ffa916b65c6087eed

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