Pure Erlang implementation of Shamir Secret Sharing.
1> Shares = shamir:share(<<"hello">>, 3, 4). ... shares printed here 2> shamir:recover(lists:sublist(Shares, 3). <<"hello">>