No server. No file path. No database. Your data becomes a number. That number IS the address. The math IS the storage. Try it yourself โ hash real files and watch them become numbers.
Upload real documents (or generate random ones) and watch them transform into SHA-512 hashes stored in your browser's IndexedDB. Reload the page โ the links still work.
Drop files here or click to upload โ any file type works
The file never leaves your browser. Everything happens locally via Web Crypto API.
Each row of data is serialized, hashed, and stored as a SHA-512 number. The number IS the data's permanent identity. No server required.
When we say the data "lives in the math," we mean: the SHA-512 hash is not just an ID โ it's a cryptographic commitment to the exact bytes of the content. Given the hash, you can verify any copy of the content from anywhere. The hash doesn't point to a server. It points to the content itself, wherever it exists. The number IS the address.
No IP address. No /var/www/ path. No GitHub repo. No S3 bucket. Each data point is identified purely by its SHA-512 hash โ a 128-character hexadecimal number derived from the content itself. If you have the hash and the content, you can verify the match with crypto.subtle.digest('SHA-512', data) on ANY device, offline, with zero dependencies.
Where does each system look for the data?