shamir/README.md
2012-03-16 23:31:53 +00:00

376 B

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">>