diff --git a/README.md b/README.md index e8ce883..c411b5f 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,11 @@ parameter choices in addition to other factors when deploying fuzzytags to real- For more guidance (and warnings) on integrating fuzzytags into a privacy preserving application see [documentation](https://docs.rs/fuzzytags/#integrating-fuzzytags) +## Building + +This crate requires experimental features currently only provided by Rust nightly: + +` rustup default nightly` ## Terminology and a more detailed System Description diff --git a/src/lib.rs b/src/lib.rs index 7e7050d..79a9c97 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -534,7 +534,7 @@ impl TaggingKey<{ GAMMA }> { // Once the ciphertext has been computed, we use a master trapdoor for the chameleon hash (which is part of the scheme’s DetectionKey) in order to compute a collision (y,m) where m // is a hash of the remaining components of the ciphertext" - // Translated m is a challenge over the random element u and the ordered ciphertexts + // Translated, m is a challenge over the random element u and the ordered ciphertexts // It is then used to construct a response y which can be used to recover w the random element // used to derive the key.