Shamir's Secret Sharing
en.wikipedia.org
Shamir's Secret Sharing
1–10 of 19 posts
Re: Shamir's Secret Sharing
#2Re: Shamir's Secret Sharing
#3http://www.digital-scurf.org/software/libgfshare
https://github.com/ryancdotorg/threshcrypt (uses libgfshare, written by me - handles large files by splitting a key into shares and encrypting them with password-derived keys)
https://github.com/amper5and/secrets.js/
http://passguardian.com/ (uses secrets.js)
Re: Shamir's Secret Sharing
#4Re: Shamir's Secret Sharing
#5I've been wanting to use this in combination with Rabin's Information Dispersal algorithm to create an autonomous distributed file storage system. You would have redundancy, but redundancy in a way that you only require k of n "pieces" to recover your original file (or data object). This is pretty cool, because you don't need to have 10 copies of a 1 GB file (10 GB total) spread about the web in order to achieve a hi…
Re: Shamir's Secret Sharing
#6Re: Shamir's Secret Sharing
#7With Shamir's secret sharing you can take a file and split it for example into 3 parts. Only 2 parts would need to be combined to re-create the original. This would be 2 of 3 in Bitcoin parlance.
Re: Shamir's Secret Sharing
#8[0] http://cs.jhu.edu/~sdoshi/crypto/papers/shamirturing.pdf
Re: Shamir's Secret Sharing
#9Vault uses this technique https://www.vaultproject.io/