Real implementation, not simulation. Demo 3 actually applies the technology with three fragments. Two stored in your browser, one derived from your display size. Try to steal the browser fragments. The data remains locked because the third fragment cannot be stolen - it's never written anywhere, only computed on demand.
Alice Chen (ID 1001) has a protected record. Three things combine to unlock it: a server fragment, a browser fragment, and a display-size fragment.
Click Re-lock to lock your current window size. The record becomes readable. Then resize your browser window and click it again — the record disappears.
In hacker mode, you can steal the browser fragments. But the display-size fragment can never be stolen because it was never stored anywhere.
SHA-256(width × height) — and is never written to any storage. No chip to extract it from.C1 lives in localStorage — survives browser restarts. C2 lives in sessionStorage — gone when the tab closes. Both are auto-generated the first time you visit this browser.
C3 is SHA-256(width × height), computed live and discarded immediately. It is never written anywhere. There is no chip to extract it from.
▸ Hacker hint (spoilers)