Skip to content

Commit 0fe2202

Browse files
committed
Removed unused comment
1 parent c59f3d8 commit 0fe2202

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

circuits/aes-gcm/aes_128_enc.circom

-5
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,6 @@ template AES128Encrypt()
4545
/// i see so they are 32 bit chunks
4646
/// Then XOR each chuck with parts of the keys
4747
xor_1[i][j].a <== in[i*32+j]; // plaintext
48-
49-
50-
51-
/// XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
52-
// (i+ks_index)*32+j
5348
xor_1[i][j].b <== ks[(i+ks_index)*32+j]; // key schedule
5449

5550
s[i][j] = xor_1[i][j].out;

0 commit comments

Comments
 (0)