Hacker News new | ask | show | jobs
by codahale 2763 days ago
Shamir’s is one of my favorite little crypto schemes. I’ve implemented it over GF(256) in a bunch of different languages just for fun:

Haskell: https://github.com/codahale/hs-shamir Go: https://github.com/codahale/sss Rust: https://github.com/codahale/sss.rs Java: https://github.com/codahale/shamir

1 comments

I made good use of your java library a few months ago for a project at work, thank you so much !