Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 271 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 271 Bytes

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