We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c59f3d8 commit 0fe2202Copy full SHA for 0fe2202
circuits/aes-gcm/aes_128_enc.circom
@@ -45,11 +45,6 @@ template AES128Encrypt()
45
/// i see so they are 32 bit chunks
46
/// Then XOR each chuck with parts of the keys
47
xor_1[i][j].a <== in[i*32+j]; // plaintext
48
-
49
50
51
- /// XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
52
- // (i+ks_index)*32+j
53
xor_1[i][j].b <== ks[(i+ks_index)*32+j]; // key schedule
54
55
s[i][j] = xor_1[i][j].out;
0 commit comments