Final cleanup tonight

This commit is contained in:
David Harris 2024-03-11 01:40:47 -07:00
parent 8af25a45e6
commit 096f4090ac

View File

@ -56,5 +56,5 @@ module zknde32 import cvw::*; #(parameter cvw_t P) (
// final rotate and XOR steps shared between encrypt and decrypt
rotate #(32) mrot(rotin, shamt, rotout); // Rotate the mixcolumns output left by shamt (bs * 8)
assign ZKNDEResult = A ^ rotout; // xor with running value
assign ZKNDEResult = A ^ rotout; // xor with running value (A = rs1)
endmodule