From 180e8f5cda210464e9ee57cc4e704313130dd24c Mon Sep 17 00:00:00 2001 From: Sarah Jamie Lewis Date: Sat, 22 May 2021 13:01:43 -0700 Subject: [PATCH] Documentation tweaks, add note regarding nightly --- README.md | 5 +++++ src/lib.rs | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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.