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

VPS vs Oulu

Veikkausliiga · Finland · 23 Jun 2026, 15:00 UTC

Final score
5 : 1
Result
Won
Pick
VPS
Market
1x2
Model prob.
46.9%
Best price
2.49
Min odds
2.33
Stake factor
2.40

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)
gAkN09pXmacEUEkR5gzUXjgLkB1e37mpALyN7HBQQRPijkWJTi726YZJ8Nk20akGjnBL8rzZ7QFzytzVpAklcUzNziEzlE8fohOtZuAowfo/EnTd+fAdD4kk6byggRKtttDHcsGbz2qzg5DUlCOTtYwYnw7wlGAMF/5d54fYQUQgADyNXJ9d/tHlgkUWv9Vn7h48VPELAnvv2EHRDEZ2HJgkJz0vnbT9HKXPREtT8/4ZOd9lJUTU4fkCHR2PDGDykkzjhU5IOb8QpUno+cEi+rBN0a/oTil/NM2U9z7umUwHPy3aqp9MQ2lcFIYyCAAOJaBQrOTglTVJ0KIUj0Oh86Dd
key fingerprint sha256: 93f1e5fef129e5fe29012c474cd01b5f4066dbe78e47f6d1443bc9ef7994e3f5
Decrypt it & read the pick
Decryption key (released after the match)
c091b52769f6d1d87588459ddb03ca081c620ec971435644ba5824827597d20b
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("gAkN09pXmacEUEkR5gzUXjgLkB1e37mpALyN7HBQQRPijkWJTi726YZJ8Nk20akGjnBL8rzZ7QFzytzVpAklcUzNziEzlE8fohOtZuAowfo/EnTd+fAdD4kk6byggRKtttDHcsGbz2qzg5DUlCOTtYwYnw7wlGAMF/5d54fYQUQgADyNXJ9d/tHlgkUWv9Vn7h48VPELAnvv2EHRDEZ2HJgkJz0vnbT9HKXPREtT8/4ZOd9lJUTU4fkCHR2PDGDykkzjhU5IOb8QpUno+cEi+rBN0a/oTil/NM2U9z7umUwHPy3aqp9MQ2lcFIYyCAAOJaBQrOTglTVJ0KIUj0Oh86Dd"), c => c.charCodeAt(0));
const key  = Uint8Array.from("c091b52769f6d1d87588459ddb03ca081c620ec971435644ba5824827597d20b".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): c091b52769f6d1d87588459ddb03ca081c620ec971435644ba5824827597d20b
  • IV / nonce (hex): 80090dd3da5799a704504911
  • Ciphertext (hex): e60cd45e380b901d5edfb9a900bc8dec70504113e28e45894e2ef6e98649f0d936d1a9068e704bf2bcd9ed0173cadcd5a40925714ccdce2133944f1fa213ad66e028c1fa3f1274ddf9f01d0f8924e9bca08112adb6d0c772c19bcf6ab38390d4942393b58c189f0ef094600c17fe5de787d8414420003c8d5c9f5dfed1e5824516bfd567ee1e3c54f10b027befd841d10c46761c9824273d2f9db4fd1ca5cf444b53f3fe1939df652544d4e1f9021d1d8f0c60f2924ce3854e4839bf10a549e8f9c122fab04dd1afe84e297f34cd94f73eee994c073f2ddaaa9f4c43695c14863208000e25a0
  • Auth tag (hex): 50ace4e0953549d0a2148f43a1f3a0dd

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