Commit to a message
(&self, message: &G::ScalarField, randomness: &G::ScalarField)
| 35 | |
| 36 | /// Commit to a message |
| 37 | pub fn commit(&self, message: &G::ScalarField, randomness: &G::ScalarField) -> G { |
| 38 | self.commit_as_projective(message, randomness).into() |
| 39 | } |
| 40 | |
| 41 | /// Commit to a batch of messages and output commitments corresponding to each message. |
| 42 | pub fn commit_to_a_batch( |