Hi-Lo is a game of rapid-fire choices and escalating multipliers. This Hi-Lo Verifier lets you audit your cards in detail, tracing the exact sequence of card draws using our Universal Verifier format to confirm the deck was never manipulated mid-game.
In online Hi-Lo, a card is displayed, and you must guess whether the next card drawn will be Higher or Lower (or equal). As you string together correct guesses, your potential multiplier grows. However, because you are making decisions in real time, players often suspect the casino of swapping cards to trigger a loss when their stakes get high.
A provably fair Hi-Lo verifier removes this fear. By reconstructing the exact sequence of cards from your seed pair and nonce, the verifier proves that all future cards were mathematically locked in *before* you made your first guess.
To calculate the card for each step in a Hi-Lo sequence, the verifier performs a standard mapping algorithm:
Because Hi-Lo involves a sequence of card draws, the game uses your server seed, client seed, and nonce, but adds a **cursor index** to track each step of your guesses:
HMAC_Hash = HMAC_SHA256(Server_Seed, "Client_Seed:Nonce:Cursor")
The first 4 bytes of this hash are converted to a decimal fraction U between 0 and 1:
U = Hex_To_Decimal(First_8_Chars) / 4294967296
To find the drawn card, we multiply the fraction U by 52 (the total cards in a standard deck) and floor the result:
Card_Index = Floor(U * 52)
This index is mapped to a specific suit and rank:
Let’s audit a real sequence. You start a round with the King of Spades. You guess “Lower” three times, winning your round with the following card draws:
You rotate your seeds and paste the details into the verifier:
4f28ba...hilo_lucky_runThe verifier runs the hash for the first step (Cursor 0):
U = 0.326923Floor(0.326923 * 52) = Floor(17.0) = 1717 - 13 = 4 (5) of **Hearts** (or 8 of Hearts depending on the site’s suit offsets).This process is repeated for Cursor 1 and Cursor 2, matching your exact card sequence. The run is cryptographically verified as fair.
No. The casino’s house edge (typically 1.0% to 2.5%) is dynamically built into the payout multipliers. For example, if you guess “Lower” on a King, your probability of winning is high, so the multiplier payout is very low. If you guess “Higher,” the payout is massive to reflect the tiny win probability.
Most Hi-Lo games count an “equal” rank card draw (e.g. drawing another King after a King) as an instant loss, unless you explicitly bet on the “Equal” option. This is how the house secures its edge.
Rotating your seeds forces the casino to reveal the un-hashed server seed. By entering it here, you confirm that the sequence of cards was determined by the hash from the start, and was not adjusted mid-game as your bet grew.