The latest version of secret-sharing is 1.0.1.2-0.
secret-sharing
Version 1.0.0.3 revision 1 uploaded by HerbertValerioRiedel.
Package meta
- Synopsis
- Information-theoretic secure secret sharing
- Description
Implementation of an (
m
,n
)-threshold secret sharing scheme. A given ByteStringb
(the secret) is split inton
shares, and anym
shares are sufficient to reconstructb
. The scheme preserves information-theoretic perfect secrecy in the sense that the knowledge of up tom-1
shares does not reveal any information about the secretb
.Example in GHCi: Suppose that you want to split the string "my secret data" into n=5 shares such that at least m=3 shares are necessary to reconstruct the secret.
> :m + Data.ByteString.Lazy.Char8 Crypto.SecretSharing > let secret = pack "my secret message!" > shares <- encode 3 5 secret > mapM_ (Prelude.putStrLn . show) shares -- each share should be deposited at a different site. (1,"\134\168\154\SUBV\248\CAN:\250y<\GS\EOT*\t\222_\140") (2,"\225\206\241\136\SUBse\199r\169\162\131D4\179P\210x") (3,"~\238%\192\174\206\\\f\214\173\162\148\&3\139_\183\193\235") (4,"Z\b0\188\DC2\f\247\f,\136\&6S\209\&5\n\FS,\223") (5,"x\EM\CAN\DELI*<\193q7d\192!/\183v\DC3T") > let shares' = Prelude.drop 2 shares > decode shares' "my secret message!"
The mathematics behind the secret sharing scheme is described in: "How to share a secret." by Adi Shamir. In Communications of the ACM 22 (11): 612–613, 1979.
- Author
- Peter Robinson <peter.robinson@monoid.at>
- Bug reports
- n/a
- Category
- Cryptography
- Copyright
- Peter Robinson 2014
- Homepage
- http://monoid.at/code
- Maintainer
- peter.robinson@monoid.at
- Package URL
- n/a
- Stability
- experimental