forked from und3f/crypt-ssss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
76 lines (58 loc) · 1.95 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
NAME
Crypt::SSSS - implementation of Shamir's Secret Sharing System.
SYNOPSIS
use Crypt::SSSS;
# use (3, 3) scheme
my $shares = ssss_distribute(
message => "\x06\x1c\x08",
k => 3,
);
# Save shares
for my $share (1 .. 3) {
open my $fh, '>', "share${share}.dat";
print $fh $shares->{$share}->binary;
close $fh;
}
# Reconstruct message
my $ishares = {};
for my $share (1 .. 3) {
open my $fh, '<', "share${share}.dat";
$ishares->{$share} = do {
local $/; # slurp!
<$fh>;
};
close $fh;
}
print "Original message: ", sprintf '"\x%02x\x%02x\x%02x"',
unpack('C*', ssss_reconstruct(p => 257, shares => $ishares));
DESCRIPTION
Implementation of Shamir's Secret Sharing Scheme.
ATTRIBUTES
Crypt::SSSS implements the following attributes.
"ssss_distribute"
my $shares = ssss_distribute(
message => $message,
k => $k,
p => $p, # 257 by default
n => $n, # By default equals to k
);
Distribute $message to $n shares, so that any $k shares would be enough
to reconstruct the secret. $p is a prime number.
Returns hashref of Crypt::SSSS::Message.
"ssss_reconstruct"
my $secret = ssss_reconstruct(
shares => $shares,
p => $p, # 257 by default
);
Reconstruct message from given $shares. $p is a prime number used to
distribute message.
AUTHOR
Sergey Zasenko, "[email protected]".
CREDITS
Mohammad S Anwar (MANWAR)
REPOSITORY
<https://github.com/und3f/crypt-ssss>
COPYRIGHT AND LICENSE
Copyright (C) 2011, 2016, Sergey Zasenko.
This program is free software, you can redistribute it and/or modify it
under the same terms as Perl 5.10.