Skip to content

Commit

Permalink
✏️ Fix abbreviation typos
Browse files Browse the repository at this point in the history
  • Loading branch information
sheagrief committed Sep 26, 2023
1 parent 7c09b6f commit ca28236
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/preprocessing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
///
Expand Down
4 changes: 2 additions & 2 deletions src/she.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit ca28236

Please sign in to comment.