diff --git a/src/preprocessing.rs b/src/preprocessing.rs index 697d7f8d..650ad4f9 100644 --- a/src/preprocessing.rs +++ b/src/preprocessing.rs @@ -19,7 +19,7 @@ pub mod zkpopk { use rand::{thread_rng, Rng}; use rand_distr::uniform::UniformSampler; - /// Parameters for ZKPoPK (Zero-Knowledge Proof of Partial Knowledge). + /// Parameters for ZKPoPK (Zero-Knowledge Proof of Plaintext Knowledge). /// /// This struct holds various parameters used in the context of ZKPoPK. /// diff --git a/src/she.rs b/src/she.rs index dd1b80b9..c2c12a6e 100644 --- a/src/she.rs +++ b/src/she.rs @@ -21,9 +21,9 @@ pub use plaintext::{Plaintext, Plaintextish, Plaintexts}; use rand::Rng; use rand_distr::{Distribution, Normal}; -/// Parameters for a Secure Homomorphic Encryption Scheme (SHE). +/// Parameters for a Somewhat Homomorphic Encryption Scheme (SHE). /// -/// This struct holds various parameters used in the context of a Secure Homomorphic Encryption Scheme. +/// This struct holds various parameters used in the context of a Somewhat Homomorphic Encryption Scheme. /// /// - `s`: The length of the Plaintext. /// - `n`: The degree of the polynomial (length of Encodedtext), which should match the length of the plaintext.