| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <html>
- <head>
- <meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
- <link href="css/style.css" rel="stylesheet" />
- <link href="css/loading.css" rel="stylesheet" />
- <meta http-equiv="Content-Security-Policy"
- content="default-src 'self' 'unsafe-eval' 'wasm-eval';">
- </head>
- <body>
- <div class="fixedpanel">
- <div class="topbar">
- <div class="title">
- <h1>Spiral Demo</h1>
- </div>
- <div class="searchsuperbox">
- <div class="searchandsuggestions">
- <div class="searchbutton">
- <input type="text" class="searchbox" placeholder="Article title" />
- <input id="make_query" type="button" value=">" />
- <div class="loading">
- <div class="loading-icon hidden la-ball-clip-rotate la-dark la-sm"><div></div></div>
- <div class="message inprogress"></div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="content">
- <div id="output" class="articles"></div>
- <div class="sidebar">
- <p>
- This is a page is a demo of the work featured in our paper, <a href="https://eprint.iacr.org/2022/368.pdf">"Spiral: Fast, High-Rate Single-Server PIR via FHE Composition"</a>.
- The code for our system is available <a href="https://github.com/menonsamir/spiral-rs">here</a>.
- </p>
- <p>
- This demo allows private access to 6 GB (~30%) of English Wikipedia.
- In theory, even if the server is malicious, it will be unable to learn which articles you request.
- All article title searches are performed locally, and no images are available.
- </p>
- <p>
- When making your first query, this demo will upload 18 MB of data; each later query requires only 14 KB of upload. The server response to each query is 250 KB.
- </p>
- <p>
- This is research-quality software built for demonstration purposes; it is not intended to be
- side-channel resistant and has not undergone any kind fo security review. Don't use this code in production.
- </p>
- </div>
- </div>
- <!-- <script type="module" src="js/bz2.js"></script>
- <script type="module" src="js/wtf_wikipedia-client.min.js"></script> -->
- <script type="module" src="js/main.js"></script>
- </body>
- </html>
|