logoalt Hacker News

How Shamir's Secret Sharing Works

341 pointsby subractyesterday at 10:37 PM59 commentsview on HN

Comments

946789987649today at 9:01 AM

My masters thesis was on this! I created an app where you can store your data across all the common data storage providers (dropbox, google drive, onedrive, etc.) and used the secret sharing to aid with the encryption. The benefit was that:

- They could no longer read your data

- Additional redundancy (as you only need 2 to be available)

- Compared to other secure storage apps which rely on a master password, which if you forget, you are screwed, you could still use all the usual account recovery methods.

show 1 reply
c0l0today at 8:46 AM

We use this technique in our team to distribute passphrases for our secondary secret stores (that contain instructions on how to access our primary secret stores) in a "democratically secure and safe" manner.

https://packages.debian.org/trixie/ssss is a nice and rather straightforward implementation.

lormaynatoday at 3:32 PM

My master thesis was about an application of SSS to mesh networks: even if one of the node of the mesh was captured by an attacker and the secret retrieved from the node, it was impossible to crack the whole encryption.

arcbytetoday at 3:48 PM

I'm curious if there's a way to merge multiple key/value pairs into a single cryptext (without just appending or exploding the size of the result) such that everyone securing their information into this scheme stores a copy of the same encrypted blob, but their key decrypts a different value from the blob.

In this way, people could act as backups for one another with plausible deniability of what's being stored.

Hypomixolydiantoday at 12:05 PM

Shamir saved my bottom once, by helping me reconstruct random password used for almost forgotten backup, suddenly needed to be restored at once. Thank God I distributed shares in my family, "just in case".

ndr_today at 5:51 AM

Bruce Schneier described this in his seminal book Applied Cryptography, and HashiCorp Vault used to have an implementation in Go. On the practical side, I always wondered how large - in bits - the shares should be. One answer I got on a news group was "1 bit more than the actual key length". Nowadays, I wonder how the quantum computing threat would inform 1) share size choice and 2) pro/con Secret Sharing in general. Does anyone know?

show 5 replies
_jackdk_today at 1:33 AM

This is such a cool technique, and you could even teach it in secondary schools as a neat thing computer scientists can do with polynomials.

show 1 reply
phkahlertoday at 2:00 PM

This part:

"The useful part is not that the secret is hard to compute from too few shares. It is that too few shares contain no information about the secret. With one share missing, every possible secret is still possible."

Reminds me of factoring numbers with the Quadratic Sieve or its variants. You find a system of congruences mod n that eventually allow you to compute prime factors, but until you have enough of them that isn't possible. I've often wondered... Each congruence must contain some information right? What space are we reducing degrees of freedom in?

Same thing here, each piece restricts the space of polynomials, but does not restrict it enough to tell where the key crosses the axis.

Cider9986today at 1:09 AM

Here is Ente's implementation: (https://2of3.ente.com/)

show 2 replies
l1am0today at 7:34 AM

Years ago I build a little tool to run shamir secret sharing in the browser (can be used full offline, just download the page)

https://simon-frey.com/s4/

ghostfoxgodtoday at 5:39 AM

It's an incredible technique, when I came across it, it just changed the way I thought of solving giving out keys without "truly" giving them out. This gave me confidence for eternalvault.app, a project of mine.

saidnooneevertoday at 11:17 AM

this is very nice explanation which needs no maths. really cool. I read about this a few times in articles without images etc and its hard to digest if you dont have a good background but this was wonderfully easy to understand. Thanks a lot.

3eb7988a1663today at 3:57 AM

Do the people who hold the root DNS keys do anything like this? Or is that too much complexity when a safe in a secure room works as an effective backup?

show 1 reply
Tepixtoday at 8:17 AM

Instead of going from two lines to curves, parabolas etc, couldn't you also add another dimension instead?

cryptocod3today at 12:35 PM

SSS is amazing, though managing shares over a long period (people come and go) and dealing with collusion risk can be rough.

teravortoday at 12:58 AM

if the secret is large usually it's encrypted and the payload is distributed along with the shares of the key.

but you can also just use Reed-Solomon and split the payload, the difference with Shamir is that you lose information-theoretic security (you lose it the moment you use encryption anyway) and the payload also needs to undergo an all-or-nothing-transform (AONT).

AONT transforms the entire payload into an encrypted blob which also serves as its own key, a withheld piece is a de facto encryption key. this is required because Reed-Solomon can have pathological cases where pieces leak information.

show 1 reply
craintestoday at 6:47 AM

I also had written an article on the subject a while ago if you want to dig a bit deeper: https://petal.cafe/posts/shamir/

compsciphdtoday at 12:58 AM

before I learned of shamir secret sharing, I wondered why one couldn't do the same exact thing with a par2 like system (albiet with smaller pieces than a par2 system would traditionally have). i.e. you have X bits of data, you create Y*X/N sized recovery blocks (where Y > N). You hand each recovery block to individual users. and any N users can get together to recover the key and decrypt the contents.

show 2 replies
freakynittoday at 7:26 AM

This is such a cool neat trick.

Vibe-coded a little playground where you can generate secrets, see the polynomial, combine the secrets, and in general, play around:

https://shamirs-secret-sharing.pagey.site

DesiLurkertoday at 9:23 AM

SSS works pretty well. IIRC somebody in bitcoin community started using this for storing private keys using 3/5 schema. they basically divide the secret keys into 5 parts out of which you only need 3 to recover original private key. IDK if there are any hardware wallets that actually support it yet though.

sreekanth850today at 5:23 AM

ente means mine in Malayalam language. it's said to be one of the toughest Indian language to learn. FYI.

show 1 reply
calvinmorrisontoday at 3:14 AM

something tangentially i am interested in is computing following the 'two person rule' for things like sudo. Yes I am logged into server X at terinal Y, and so is my co-worker and we both sign off on running command X

show 3 replies
cryptoztoday at 5:07 AM

See also a story about an implementation from Max Levchin: https://max.levch.in/post/724289457144070144/shamir-secret-s...

AIFSOfficialtoday at 5:33 PM

[flagged]

han1today at 12:55 AM

[flagged]