惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
L
LangChain Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Recent Announcements
Recent Announcements
大猫的无限游戏
大猫的无限游戏
罗磊的独立博客
MongoDB | Blog
MongoDB | Blog
博客园 - 【当耐特】
博客园 - 叶小钗
I
InfoQ
MyScale Blog
MyScale Blog
H
Help Net Security
月光博客
月光博客
Vercel News
Vercel News
B
Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
D
DataBreaches.Net
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
N
Netflix TechBlog - Medium
宝玉的分享
宝玉的分享
WordPress大学
WordPress大学
GbyAI
GbyAI
Blog — PlanetScale
Blog — PlanetScale
博客园 - Franky

ashishb.net

A day in Luxembourg - the richest country in the world I was asked to install malware during a fake interview Book summary: Breakneck - China's quest to engineer the future by Dan Wang Book summary: How to Teach Your Baby to Read Book Summary: The Discontented Little Baby Book by Pamela Douglas Introducing Amazing Sandbox - run third-party tools and AI agents securely on your machine Why software outsourcing gets a bad reputation? Book summary: The Natural Baby Sleep Solution by Polly Moore A day in Antwerp, Belgium Journey of online influencers Two days in Brussels, Belgium Shortcuts - when we love them and when we don't A visit to Rakhigarhi Three days in overhyped Paris Empty Japan, crowded Tokyo The real lock-in in GitHub is not the code, but the stars 11-day Norwegian Breakaway East Caribbean cruise Sanskrit and Sri Lankan Air Force Use REST with Open API The Achilles heel of American capitalism Costa Rica in 4 days At a juice stall in Sri Lanka A short stay at Warsaw, Poland Best practices for using Python & uv inside Docker Two days in Vilnius, Lithuania How IntelliJ IDEs waste disk space Pregnancy Why there aren't many digital nomads from India Two days in Riga, Latvia To keep your machine secure, run third-party tools inside Docker
Nillion
Ashish Bhatia · 2023-05-29 · via ashishb.net

Recently, I came across Nillion’s whitepaper. Nillion at its core is trying to be a new decentralized encrypted data-processing layer. Here’s how it works.

Performing computation on encrypted data is an interesting challenge. Fully-homomorphic encryption has been one approach to it. It is both computationally expensive and slow. Nillion takes an interesting approach. It uses one-time pads, something that a cryptography student learns and immediately forgets about. So, rather than storing the plain-text information, Nillion stores data encrypted (XORed) with one-time pads. And these pads are generated via multi-party computation with some minimum number of shares for decryption, say T.

What this leads to is something interesting. Rather than storing plain-text data D, Nillion’s decentralized nodes are stored D⊕P where P is a one-time pad that’s generated from multi-party computation where minimum T nodes have to collude to get that. Can all computations be performed on D⊕P, well, no, But quite a bit. The bigger advantage, I believe, is that D⊕P has no dispersion. A typical encryption algorithm is expected to produce high dispersion, so, when you change a single bit in the plain-text data D, the output will look radically different in several bits all over. In the case of a one-time pad, there is no such dispersion. And that makes them a great candidate for being able to perform distributed computation on encrypted data.