Skip to content

Commit

Permalink
adding comments
Browse files Browse the repository at this point in the history
  • Loading branch information
olegfomenko committed Mar 22, 2024
1 parent 60c11fa commit d080c62
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/circuit.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
///! Definition and implementation of the Bulletproofs++ arithmetic circuit protocol.
#![allow(non_snake_case)]

use std::ops::{Add, Mul, Sub};
Expand Down
1 change: 1 addition & 0 deletions src/range_proof/reciprocal.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
///! Definition and implementation of the reciprocal range-proof protocol based on arithmetic circuits protocol.
#![allow(non_snake_case)]

use std::ops::{Add, Mul};
Expand Down
1 change: 1 addition & 0 deletions src/range_proof/u64_proof.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
///! Definition and implementation of the u64 range-proof protocol based on reciprocal protocol.
#![allow(non_snake_case)]

use std::ops::{Add, Mul};
Expand Down
1 change: 1 addition & 0 deletions src/wnla.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
///! Definition and implementation of the Bulletproofs++ weight norm linear argument protocol.
use std::ops::{Add, Mul};
use k256::{AffinePoint, ProjectivePoint, Scalar};
use merlin::Transcript;
Expand Down

0 comments on commit d080c62

Please sign in to comment.