tags:

views:

382

answers:

2

I am trying to find a class or something that would allow me to do Shamir's Secret Sharing.

I found a program in C# that allows you to do it but it does not supply source code. I was just wondering if anyone has a class that already does what I need.

+1  A: 

Why not use ILDASM or Reflector to get the source from the application you have?

Andrew Hare
+4  A: 

SecretSharp (linked from the wikipedia article) is GPL - you can browse the code here.

Jon Skeet