Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/content/en/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ It is named after the bridge outside the Google Cambridge office.

## Ongoing Security Reviews

This project is currently undergoing two independent security reviews by panels of academic and industry experts in the field. Their reports will be made public on this repo when completed, targetted for Aug 1.
This project is currently undergoing two independent security reviews by panels of academic and industry experts in the field. Their reports will be made public on this repo when completed, targeted for Aug 1.

2 changes: 1 addition & 1 deletion lib/algebra/fp_generic.h
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ class FpGeneric {
}

// return (X[k] - X[k - i])^{-1}, were X[i] is the
// i-th poly evalaluation point.
// i-th poly evaluation point.
Elt newton_denominator(size_t k, size_t i) const {
check(k < kNPolyEvaluationPoints, "k < kNPolyEvaluationPoints");
check(i <= k, "i <= k");
Expand Down
2 changes: 1 addition & 1 deletion lib/circuits/ecdsa/verify_external_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
// circuit. The test works by generating a random key, message, and signature
// using openssl, and then verifying the signature using our circuit. Next, we
// maul the signature by twiddling a single hex digit in the original 5-tuple,
// and ensure that the resulting signature fails. Allthough this only checks
// and ensure that the resulting signature fails. Although this only checks
// that single edit distance changes cause failures, it is a basic test.
//
// $ blaze-bin/ecdsa/verify_external_test \
Expand Down