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

Krems vs First Vienna

Club Friendlies 3 · World · 03 Jul 2026, 16:30 UTC

Final score
0 : 2
Result
Won
Pick
First Vienna
Market
1x2
Model prob.
83.6%
Best price
1.39
Min odds
1.26
Stake factor
2.30

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)
vS9MuEgWh3x6Fd3QeXHpt/p6/dXz4IfdUdjTXwfj2mm3VME9xyDlDKtBIMLfk8IDS26Tmqroz8m/e+Hq33xd+zi4m4UmqUXq56xd47BbtDl8ago7y4WdVPVQwnw05cNfYWWcQxJcSI0llw1nOexqVnLTELb3e2TzZZMKRQgA96Fn2YyIgZwa3QSMH3ILmejJVzQrTe2Eg53miCqZQ+Nos0P3LqPsdwoXWj+ysY9upxyQq0NMgepTLPHhGPzVoNPip4IJJhLNmKhF6LS/XtBshVsduC5PTgyQX0aLrIB2S+5YKn42kkzihMlxz2HZpifiFk+67IGqyKnkYlBVPpX68lEHMtacN8L+OgrRGw==
key fingerprint sha256: 54bd01034a773c3ce787475beeb5914dc8996343a94e53657f97e8aa0e47f22d
Decrypt it & read the pick
Decryption key (released after the match)
1333d8cdacb3310b47438f08d554959f4559820d12e589411cc576b7c8f97a9d
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("vS9MuEgWh3x6Fd3QeXHpt/p6/dXz4IfdUdjTXwfj2mm3VME9xyDlDKtBIMLfk8IDS26Tmqroz8m/e+Hq33xd+zi4m4UmqUXq56xd47BbtDl8ago7y4WdVPVQwnw05cNfYWWcQxJcSI0llw1nOexqVnLTELb3e2TzZZMKRQgA96Fn2YyIgZwa3QSMH3ILmejJVzQrTe2Eg53miCqZQ+Nos0P3LqPsdwoXWj+ysY9upxyQq0NMgepTLPHhGPzVoNPip4IJJhLNmKhF6LS/XtBshVsduC5PTgyQX0aLrIB2S+5YKn42kkzihMlxz2HZpifiFk+67IGqyKnkYlBVPpX68lEHMtacN8L+OgrRGw=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("1333d8cdacb3310b47438f08d554959f4559820d12e589411cc576b7c8f97a9d".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): 1333d8cdacb3310b47438f08d554959f4559820d12e589411cc576b7c8f97a9d
  • IV / nonce (hex): bd2f4cb84816877c7a15ddd0
  • Ciphertext (hex): 7971e9b7fa7afdd5f3e087dd51d8d35f07e3da69b754c13dc720e50cab4120c2df93c2034b6e939aaae8cfc9bf7be1eadf7c5dfb38b89b8526a945eae7ac5de3b05bb4397c6a0a3bcb859d54f550c27c34e5c35f61659c43125c488d25970d6739ec6a5672d310b6f77b64f365930a450800f7a167d98c88819c1add048c1f720b99e8c957342b4ded84839de6882a9943e368b343f72ea3ec770a175a3fb2b18f6ea71c90ab434c81ea532cf1e118fcd5a0d3e2a782092612cd98a845e8b4bf5ed06c855b1db82e4f4e0c905f468bac80764bee582a7e36924ce284c971cf61d9a627e2164fbaec81aac8a9e4625055
  • Auth tag (hex): 3e95faf2510732d69c37c2fe3a0ad11b

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