keep up with Rust

This commit is contained in:
Sebastian Gesemann
2015-02-06 20:32:01 +01:00
parent 6edf29480b
commit 073099814c
2 changed files with 6 additions and 6 deletions

4
Cargo.lock generated
View File

@ -3,7 +3,7 @@ name = "secretshare"
version = "0.1.2" version = "0.1.2"
dependencies = [ dependencies = [
"crc24 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "crc24 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"getopts 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "getopts 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
"rand 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
"rustc-serialize 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)",
] ]
@ -15,7 +15,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "getopts" name = "getopts"
version = "0.2.1" version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [ dependencies = [
"log 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -84,10 +84,10 @@ Shamir's secret sharing is known to have the perfect secrecy property.
In the context of (K,N)-threshold schemes this means that if you have In the context of (K,N)-threshold schemes this means that if you have
less than K shares available, you have absolutely no information about less than K shares available, you have absolutely no information about
what the secret is. None. The checksums that are included in the shares what the secret is. None. The checksums that are included in the shares
also don't reveal anything about the secret. They are just a simple also don't reveal anything about the secret except for its length.
integrity protection of the shares themselves. In other words, given They are just a simple integrity protection of the shares themselves.
a share without checksum, we can derive a share with a checksum. This In other words, given a share without checksum, we can derive a share
obviously does not add any new information. with a checksum. This obviously does not add any new information.
# Galois field # Galois field