TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

ZeroDB, an end-to-end encrypted database, is open source

57 点作者 mwilkison超过 9 年前

3 条评论

lewisl9029超过 9 年前
This is fascinating. Awesome work!<p>An encrypted server-side database with client-side decryption definitely seems like a great building block for private, secure applications! However, my ideal building block for the data-layer would take one step further: by only storing data on the client, and be able to synchronize between separate clients in a fully distributed manner.<p>This would open up the door to purely client-side applications with zero-knowledge sync clients that can be <i>optionally</i> hosted on servers to improve availability without any compromises to privacy. It also has the potential to offer better-than-centralized UX due to the fact that all data is available locally, so there is no network roundtrip to be concerned with. A centralized solution like ZeroDB definitely still has it&#x27;s place though, especially in applications that involve sharing and collaboration between multiple users, and in applications where the size of each user&#x27;s dataset is too large to be managed fully locally.<p>My previous project, Toc Messenger [1], used a custom encryption layer over remoteStorage [2] to achieve something close to this, but remoteStorage is not a fully distributed protocol, and has to rely on the existence of a centralized storage server to function. For my next project, I&#x27;m hoping to experiment with something like Swarm [3] for the data layer instead, which uses CRDTs for conflict resolution and supposedly supports direct P2P sync in the upcoming 1.0 release [4].<p>[1] <a href="http:&#x2F;&#x2F;toc.im&#x2F;" rel="nofollow">http:&#x2F;&#x2F;toc.im&#x2F;</a><p>[2] <a href="http:&#x2F;&#x2F;remotestorage.io&#x2F;" rel="nofollow">http:&#x2F;&#x2F;remotestorage.io&#x2F;</a><p>[3] <a href="https:&#x2F;&#x2F;github.com&#x2F;gritzko&#x2F;swarm" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;gritzko&#x2F;swarm</a><p>[4] <a href="http:&#x2F;&#x2F;swarmjs.github.io&#x2F;articles&#x2F;2of5&#x2F;" rel="nofollow">http:&#x2F;&#x2F;swarmjs.github.io&#x2F;articles&#x2F;2of5&#x2F;</a>
评论 #10694309 未加载
swswsw超过 9 年前
a very cool concept for doing a lot of projects where users need shared db.
ex3ndr超过 9 年前
I wish i will have NaCL-sompatable encryption that can be used to easily implement your own clients.