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

Saint-Malo vs Stade Briochin

National 1 · France · 04 Sept 2026, 17:00 UTC

Final score
0 : 0
Result
Lost
Pick
Saint-Malo
Market
1X2
CLV vs fair close
+6.74%
Model prob.
50.8%
Best price
2.25
Min odds
2.01
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)
adkU6EW+cn99X1X2pk7wKLapPRJ+jiCjABzzzi88S0fHp9p77/0w9xK5JA7Vo9xPmopoNpS3Fw7xHfu5j6EFBt92JUhVTAYyMztXKf36CjtxWYGQT8N7xUGclpjT7mG2BFSrqg7lzgKz5KKPzFVHLQ1b2k+ZolAcoY7Dw36Ek0ZgCdyHnDTbutZ7cCdIOBYEHkUtMq2qnvAAjakP9XlVAQV3ueacLj01iDQ8Ow1HO+VsIKyUzM+Web1FY1A3kHXyvR15QZmY1bm8JqtHDWUJ1YLxJ37uQp2PR2vB7HxSOBybQJ4sfPZqlj1Q5H5bgZNS6KBbpQZPKM93c/plrDuzYpuQYBIzhbS36MElqfo=
key fingerprint sha256: 696deb07ce3eb2c32d84988f1fc79d7988c4356af37d12c51eab6f57a99582d6
Decrypt it & read the pick
Decryption key (released after the match)
d196469c8f817754e566dc1e6dbe5731c5a1161dfbe1627a97bd7c9d6d9eb979
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("adkU6EW+cn99X1X2pk7wKLapPRJ+jiCjABzzzi88S0fHp9p77/0w9xK5JA7Vo9xPmopoNpS3Fw7xHfu5j6EFBt92JUhVTAYyMztXKf36CjtxWYGQT8N7xUGclpjT7mG2BFSrqg7lzgKz5KKPzFVHLQ1b2k+ZolAcoY7Dw36Ek0ZgCdyHnDTbutZ7cCdIOBYEHkUtMq2qnvAAjakP9XlVAQV3ueacLj01iDQ8Ow1HO+VsIKyUzM+Web1FY1A3kHXyvR15QZmY1bm8JqtHDWUJ1YLxJ37uQp2PR2vB7HxSOBybQJ4sfPZqlj1Q5H5bgZNS6KBbpQZPKM93c/plrDuzYpuQYBIzhbS36MElqfo="), c => c.charCodeAt(0));
const key  = Uint8Array.from("d196469c8f817754e566dc1e6dbe5731c5a1161dfbe1627a97bd7c9d6d9eb979".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): d196469c8f817754e566dc1e6dbe5731c5a1161dfbe1627a97bd7c9d6d9eb979
  • IV / nonce (hex): 69d914e845be727f7d5f55f6
  • Ciphertext (hex): a64ef028b6a93d127e8e20a3001cf3ce2f3c4b47c7a7da7beffd30f712b9240ed5a3dc4f9a8a683694b7170ef11dfbb98fa10506df762548554c0632333b5729fdfa0a3b715981904fc37bc5419c9698d3ee61b60454abaa0ee5ce02b3e4a28fcc55472d0d5bda4f99a2501ca18ec3c37e8493466009dc879c34dbbad67b7027483816041e452d32adaa9ef0008da90ff57955010577b9e69c2e3d3588343c3b0d473be56c20ac94cccf9679bd456350379075f2bd1d79419998d5b9bc26ab470d6509d582f1277eee429d8f476bc1ec7c52381c9b409e2c7cf66a963d50e47e5b819352e8a05ba5064f28cf7773fa65ac
  • Auth tag (hex): 3bb3629b9060123385b4b7e8c125a9fa

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