This 2D companion to the 3D Diffie-Hellman ring walk keeps the same public prime p, generator g and private exponents a and b, but computes the modular exponentiation with the algorithm real cryptographic libraries actually use: square-and-multiply (binary exponentiation), which needs only about log₂(a) steps instead of a linear walk of a multiplications. A bit-ladder chart climbs one rung per exponent bit — always squaring the running value, and additionally multiplying by g on every 1-bit — while a residue strip beneath it drops a marker at each rung's landing value along a single line spanning 0..p−1, showing the same unpredictable scattering of nearby exponents that makes the discrete logarithm problem hard, this time read off a line instead of a spiral. Running the exchange climbs both ladders independently and verifies that Alice's B^a mod p and Bob's A^b mod p converge on one identical shared secret, exactly as they do in the 3D version — the algorithm is different, the mathematics and the result are not.