Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 376 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 376 Bytes

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