Shamir secret sharing (and recovery)
Go to file
Robert Newson a6c32822d2 Add R15B01
2012-08-25 11:11:37 +01:00
include move share record to include file. 2011-08-15 11:31:06 +01:00
src move share record to include file. 2011-08-15 11:31:06 +01:00
test add PropEr test 2011-12-05 22:34:40 -05:00
.gitignore Implement Shamir secret sharing and recovery. 2011-08-14 23:15:44 +01:00
.travis.yml Add R15B01 2012-08-25 11:11:37 +01:00
Makefile add PropEr test 2011-12-05 22:34:40 -05:00
README.md add Travis build icon 2012-03-16 23:31:53 +00:00
rebar Update rebar 2012-03-16 23:30:37 +00:00
rebar.config enable code coverage 2012-04-13 23:38:29 +01:00

Build Status

Shamir

Pure Erlang implementation of Shamir Secret Sharing.

Example Usage

1> Shares = shamir:share(<<"hello">>, 3, 4).
... shares printed here
2> shamir:recover(lists:sublist(Shares, 3).
<<"hello">>