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

Rot-Weiß Oberhausen vs VfL Bochum 1848

Club Friendlies 3 · World · 04 Jul 2026, 13:30 UTC

Final score
2 : 3
Result
Lost
Pick
Rot-Weiß Oberhausen
Market
1x2
Model prob.
25.2%
Best price
5.30
Min odds
4.72
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)
jgVdCzgrwl5i118o6qWEsZBO7DB9RxiFzo4VYimE6y/OvPDOjl782sIT/pGeuPJz9eICSGHXwco64rpiH6XJVyrFGkD+G4oU625DACdT5z0Yzd48+d7i7bFhc119v3MG/nOJWvxBfCLJoreKZXsdu7u0UMCEeMJmOOYKVPrd1+dPhm1Hxw7Y6LFZdt0lOwJ2UR7bDEsSEGVaY1hBJBoH77B17E7k2EYQMrP85QsUs0GkQ6BIp/kPMlVa/tacJ3tzPDEp/0dt1Yn3uYA2jfcyhC6svW9KRCaNQtmBgVO6APgm+Ztl45DksJHdotU5flULAg9XUVnRYE/nK6qYDcq9TUexSIKOFTg8iiUNCwLEudA=
key fingerprint sha256: 63a1a57e989b8b55af19f7b0120daed31380dd31822d47219ec2221ad54bd2e5
Decrypt it & read the pick
Decryption key (released after the match)
f34a7f2ee5f1aa8d867a91da5e62880ebf6dc4c4db4af24e3eac79db123bd5a1
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("jgVdCzgrwl5i118o6qWEsZBO7DB9RxiFzo4VYimE6y/OvPDOjl782sIT/pGeuPJz9eICSGHXwco64rpiH6XJVyrFGkD+G4oU625DACdT5z0Yzd48+d7i7bFhc119v3MG/nOJWvxBfCLJoreKZXsdu7u0UMCEeMJmOOYKVPrd1+dPhm1Hxw7Y6LFZdt0lOwJ2UR7bDEsSEGVaY1hBJBoH77B17E7k2EYQMrP85QsUs0GkQ6BIp/kPMlVa/tacJ3tzPDEp/0dt1Yn3uYA2jfcyhC6svW9KRCaNQtmBgVO6APgm+Ztl45DksJHdotU5flULAg9XUVnRYE/nK6qYDcq9TUexSIKOFTg8iiUNCwLEudA="), c => c.charCodeAt(0));
const key  = Uint8Array.from("f34a7f2ee5f1aa8d867a91da5e62880ebf6dc4c4db4af24e3eac79db123bd5a1".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): f34a7f2ee5f1aa8d867a91da5e62880ebf6dc4c4db4af24e3eac79db123bd5a1
  • IV / nonce (hex): 8e055d0b382bc25e62d75f28
  • Ciphertext (hex): eaa584b1904eec307d471885ce8e15622984eb2fcebcf0ce8e5efcdac213fe919eb8f273f5e2024861d7c1ca3ae2ba621fa5c9572ac51a40fe1b8a14eb6e43002753e73d18cdde3cf9dee2edb161735d7dbf7306fe73895afc417c22c9a2b78a657b1dbbbbb450c08478c26638e60a54faddd7e74f866d47c70ed8e8b15976dd253b0276511edb0c4b1210655a635841241a07efb075ec4ee4d8461032b3fce50b14b341a443a048a7f90f32555afed69c277b733c3129ff476dd589f7b980368df732842eacbd6f4a44268d42d9818153ba00f826f99b65e390e4b091dda2d5397e550b020f575159d1604fe72baa980dcabd4d
  • Auth tag (hex): 47b148828e15383c8a250d0b02c4b9d0

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