Skip to content

Commit

Permalink
cleanning up comments
Browse files Browse the repository at this point in the history
  • Loading branch information
0xJepsen committed Oct 25, 2024
1 parent 93d53d6 commit 1d901a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion circuits/aes-gcm/aes-gcm-fold.circom
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ template AESGCMFOLD(INPUT_LEN) {
// step_in[0..INPUT_LEN] => accumulate plaintext blocks
// step_in[INPUT_LEN..INPUT_LEN*2] => accumulate ciphertext blocks
// step_in[INPUT_LEN*2..INPUT_LEN*2+4] => lastCounter
// step_in[INPUT_LEN*2+5] => foldedBlocks // TODO(WJ 2024-10-24): technically not needed if can read 4 b ytes as a 32 bit number
// step_in[INPUT_LEN*2+5] => foldedBlocks // TODO(WJ 2024-10-24): technically not needed if can read 4 bytes as a 32 bit number
signal input step_in[DATA_BYTES];
signal output step_out[DATA_BYTES];
signal counter <== step_in[INPUT_LEN*2 + 4];
Expand Down

0 comments on commit 1d901a7

Please sign in to comment.