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

Corvinul Hunedoara vs Koper

Club Friendlies 3 · World · 02 Jul 2026, 16:00 UTC

Final score
1 : 0
Result
Lost
Pick
Koper
Market
1x2
Model prob.
34.0%
Best price
10.04
Min odds
3.33
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)
cejq2dJrjuggqb9R+5j8ipdxIhw5oaeu5fY9tPUlT6OLN2HKibM1cOFaj6u8AMEKeF2aJM0BawHRaB4SptDcn1HH74E9k9uXecm7a9aBlB/YwwJKthqHE9Z9aaK5E5weQjG1yLvES5LTxRHOCYvn+wFb2WAQutvRzAXZkASENGEEOkMXFOxCszzwLjTmMOxzstVZSLqKWenZbqhIFcfs9VM1+KyaU1hfr/q7g4baVc0FuCF6ifAG7/WuB9//eT8wNB1D5L12RqLn3sfk7DhRhoMga6mq0PA7OrCs4o0gVZ+l8/hi9duPIcLvQ0J79G4ygexHHYNJF0j7VeW9O3jH2zwLXtKTLg==
key fingerprint sha256: 045d75a8112d7a2c855b18fb9d06b4c531e92f6e8e688fa1ca106563cca0a9e3
Decrypt it & read the pick
Decryption key (released after the match)
01721d220b95a286f836c07db415990c0294f3000c57b86d9fcc2dc339083c36
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("cejq2dJrjuggqb9R+5j8ipdxIhw5oaeu5fY9tPUlT6OLN2HKibM1cOFaj6u8AMEKeF2aJM0BawHRaB4SptDcn1HH74E9k9uXecm7a9aBlB/YwwJKthqHE9Z9aaK5E5weQjG1yLvES5LTxRHOCYvn+wFb2WAQutvRzAXZkASENGEEOkMXFOxCszzwLjTmMOxzstVZSLqKWenZbqhIFcfs9VM1+KyaU1hfr/q7g4baVc0FuCF6ifAG7/WuB9//eT8wNB1D5L12RqLn3sfk7DhRhoMga6mq0PA7OrCs4o0gVZ+l8/hi9duPIcLvQ0J79G4ygexHHYNJF0j7VeW9O3jH2zwLXtKTLg=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("01721d220b95a286f836c07db415990c0294f3000c57b86d9fcc2dc339083c36".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): 01721d220b95a286f836c07db415990c0294f3000c57b86d9fcc2dc339083c36
  • IV / nonce (hex): 71e8ead9d26b8ee820a9bf51
  • Ciphertext (hex): fb98fc8a9771221c39a1a7aee5f63db4f5254fa38b3761ca89b33570e15a8fabbc00c10a785d9a24cd016b01d1681e12a6d0dc9f51c7ef813d93db9779c9bb6bd681941fd8c3024ab61a8713d67d69a2b9139c1e4231b5c8bbc44b92d3c511ce098be7fb015bd96010badbd1cc05d99004843461043a431714ec42b33cf02e34e630ec73b2d55948ba8a59e9d96ea84815c7ecf55335f8ac9a53585faffabb8386da55cd05b8217a89f006eff5ae07dfff793f30341d43e4bd7646a2e7dec7e4ec38518683206ba9aad0f03b3ab0ace28d20559fa5f3f862f5db8f21c2ef43427bf46e3281ec471d8349
  • Auth tag (hex): 1748fb55e5bd3b78c7db3c0b5ed2932e

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