We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fe2202 commit e75dce5Copy full SHA for e75dce5
circuits/aes-gcm/aes_128_enc.circom
@@ -20,7 +20,7 @@ template AES128Encrypt()
20
signal input in[128]; // ciphertext
21
22
// Key schedule for initial, final, and between each full round
23
- key_size <== (4 + 4 + ROUNDS * 4) * 32
+ key_size <== (1 + 1 + ROUNDS) * 4 * 32
24
signal input ks[key_size];
25
26
/// Output is 128 bit of ciphertext
0 commit comments