Skip to content

Commit 409c46b

Browse files
authored
Update FpMul.circom
1 parent df2d907 commit 409c46b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

circuit/templates/helpers/rsa/FpMul.circom

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ include "../bigint/functions/all.circom";
2525
// a * b = r mod p
2626
// a * b - p * q - r for some q
2727
template FpMul(N, K) {
28+
// TODO: Fix hardcoded scalar field size
2829
assert(N + N + log_ceil(K) + 2 <= 252);
2930
signal input a[K];
3031
signal input b[K];

0 commit comments

Comments
 (0)